From 9e0e0e9980788278eb8d41bfccf16a69bf21a252 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Fri, 6 Aug 2021 22:01:37 +0100 Subject: [PATCH] Fix Pylint-detected function argument syntax error Signed-off-by: Yuto Takano --- tests/scripts/check-names.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/check-names.py b/tests/scripts/check-names.py index 3310ae2a03..349e66bdff 100755 --- a/tests/scripts/check-names.py +++ b/tests/scripts/check-names.py @@ -560,7 +560,7 @@ class NameCheck(object): return symbols - def perform_checks(self, show_problems: True): + def perform_checks(self, show_problems=True): """ Perform each check in order, output its PASS/FAIL status. Maintain an overall test status, and output that at the end.