From bd8e81834f823a893373b3bf588a42403c365de2 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Wed, 6 Nov 2024 11:23:23 +0100 Subject: [PATCH] Fix pylint issue Signed-off-by: Gabor Mezei --- tests/scripts/depends.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scripts/depends.py b/tests/scripts/depends.py index a6f16d3403..f2147bc64c 100755 --- a/tests/scripts/depends.py +++ b/tests/scripts/depends.py @@ -473,6 +473,7 @@ class DomainData: return [symbol for symbol in self.all_config_symbols if re.match(regexp, symbol)] + # pylint: disable=too-many-locals def __init__(self, options, conf): """Gather data about the library and establish a list of domains to test.""" build_command = [options.make_command, 'CFLAGS=-Werror -O2']