From 3590691bad2d8f1a4cef47edc00114a8ba4faab6 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Tue, 17 Aug 2021 11:05:43 +0100 Subject: [PATCH] Fix issues raised by Pylint 2.4.4 on CI Locally they were unreported by Pylint 2.9.2. Signed-off-by: Yuto Takano --- tests/scripts/check_names.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/scripts/check_names.py b/tests/scripts/check_names.py index 3f65b44d0..a5cbd70ca 100755 --- a/tests/scripts/check_names.py +++ b/tests/scripts/check_names.py @@ -408,7 +408,7 @@ class CodeParser(): # beginning of the line -- if they are indented, they might # be sub-structures within structs, etc. if (state == states.OUTSIDE_KEYWORD and - re.search(r"^(typedef +)?enum +{", line)): + re.search(r"^(typedef +)?enum +{", line)): state = states.IN_BRACES elif (state == states.OUTSIDE_KEYWORD and re.search(r"^(typedef +)?enum", line)): @@ -461,9 +461,10 @@ class CodeParser(): # Match names of typedef instances, after closing bracket. r"}? *(\w+)[;[].*" ) + # The regex below is indented for clarity. exclusion_lines = re.compile( r"^(" - r"extern +\"C\"|" + r"extern +\"C\"|" # pylint: disable=bad-continuation r"(typedef +)?(struct|union|enum)( *{)?$|" r"} *;?$|" r"$|"