From dd30cc683f3bd11d611bcde6302e328eec596682 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Thu, 17 Sep 2026 17:29:58 +0200 Subject: [PATCH] scripts: depends-py: fix pylint complains Signed-off-by: Valerio Setti --- tests/scripts/depends.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/scripts/depends.py b/tests/scripts/depends.py index d06e8f149c..1505a82eb3 100755 --- a/tests/scripts/depends.py +++ b/tests/scripts/depends.py @@ -432,9 +432,10 @@ class DomainData: if options.build_and_test_command: build_and_test = [[options.build_and_test_command]] else: - build_command = [options.make_command, '-f', 'scripts/legacy.make', 'CFLAGS=-Werror -O2'] + build_command = [options.make_command, '-f', 'scripts/legacy.make', + 'CFLAGS=-Werror -O2'] build_and_test = [build_command, [options.make_command, '-f', - 'scripts/legacy.make', 'test']] + 'scripts/legacy.make', 'test']] self.all_config_symbols = set(conf.settings.keys()) psa_info = psa_information.Information().constructors algs = {crypto_knowledge.Algorithm(alg): symbol