From 587d392df7d1f5251ca4cfdb6f37888c55f18376 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 13 Jul 2023 00:14:34 +0200 Subject: [PATCH] support/testing/tests/package/test_shadow: fix flake8 warning Fixes: support/testing/tests/package/test_shadow.py:3:1: F401 'infra.basetest.BASIC_TOOLCHAIN_CONFIG' imported but unused Reported by https://gitlab.com/buildroot.org/buildroot/-/jobs/4643484762. Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/test_shadow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_shadow.py b/support/testing/tests/package/test_shadow.py index 3352d454a5..9991a57d1d 100644 --- a/support/testing/tests/package/test_shadow.py +++ b/support/testing/tests/package/test_shadow.py @@ -1,6 +1,6 @@ import os -from infra.basetest import BRTest, BASIC_TOOLCHAIN_CONFIG +from infra.basetest import BRTest class TestShadow(BRTest):