From c377f31ad95fc83be433a640750806a2b8dba0d0 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 20 Dec 2022 19:13:42 +0100 Subject: [PATCH] Remove unused import This wasn't reported by pylint due to a pylint bug (apparently): `pylint A B` doesn't complain about an unused import in B if A happens to import and use the same module, which happens to be the case when we run pylint on the CI. Signed-off-by: Gilles Peskine --- tests/scripts/generate_bignum_tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/scripts/generate_bignum_tests.py b/tests/scripts/generate_bignum_tests.py index 0b84711861..6ee6ab39ad 100755 --- a/tests/scripts/generate_bignum_tests.py +++ b/tests/scripts/generate_bignum_tests.py @@ -60,7 +60,6 @@ from abc import ABCMeta from typing import List import scripts_path # pylint: disable=unused-import -from mbedtls_dev import test_case from mbedtls_dev import test_data_generation from mbedtls_dev import bignum_common # Import modules containing additional test classes