Fix issues raised by Pylint 2.4.4 on CI
Locally they were unreported by Pylint 2.9.2. Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
parent
4b7d23dfa6
commit
3590691bad
1 changed files with 3 additions and 2 deletions
|
@ -461,9 +461,10 @@ class CodeParser():
|
||||||
# Match names of typedef instances, after closing bracket.
|
# Match names of typedef instances, after closing bracket.
|
||||||
r"}? *(\w+)[;[].*"
|
r"}? *(\w+)[;[].*"
|
||||||
)
|
)
|
||||||
|
# The regex below is indented for clarity.
|
||||||
exclusion_lines = re.compile(
|
exclusion_lines = re.compile(
|
||||||
r"^("
|
r"^("
|
||||||
r"extern +\"C\"|"
|
r"extern +\"C\"|" # pylint: disable=bad-continuation
|
||||||
r"(typedef +)?(struct|union|enum)( *{)?$|"
|
r"(typedef +)?(struct|union|enum)( *{)?$|"
|
||||||
r"} *;?$|"
|
r"} *;?$|"
|
||||||
r"$|"
|
r"$|"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue