Fix lint issues
Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
diff --git a/scripts/mbedtls_dev/ecp_common.py b/scripts/mbedtls_dev/ecp_common.py
index 5b10a5d..311b912 100644
--- a/scripts/mbedtls_dev/ecp_common.py
+++ b/scripts/mbedtls_dev/ecp_common.py
@@ -17,5 +17,6 @@
from . import bignum_common
class EcpOperationCommon(bignum_common.ModOperationCommon):
+ #pylint: disable=abstract-method
"""Target for ecp test case generation."""
pass
diff --git a/tests/scripts/generate_ecp_tests.py b/tests/scripts/generate_ecp_tests.py
index 89186c1..73434d9 100755
--- a/tests/scripts/generate_ecp_tests.py
+++ b/tests/scripts/generate_ecp_tests.py
@@ -57,7 +57,7 @@
import scripts_path # pylint: disable=unused-import
from mbedtls_dev import test_data_generation
-from mbedtls_dev import ecp_common
+
# Import modules containing additional test classes
# Test function classes in these modules will be registered by
# the framework