From f77616e5d3ab9a5c5522d4b4f468030bc6b36592 Mon Sep 17 00:00:00 2001 From: Mathias Ertl Date: Mon, 9 Dec 2024 21:27:00 +0100 Subject: [PATCH] fix noqa rule --- pkcs11/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkcs11/__init__.py b/pkcs11/__init__.py index 5b19b4c..77ef7c0 100644 --- a/pkcs11/__init__.py +++ b/pkcs11/__init__.py @@ -6,11 +6,7 @@ from .exceptions import * # noqa: F403 from .mechanisms import * # noqa: F403 from .types import * # noqa: F403 -from .util import dh # noqa: F403 -from .util import dsa # noqa: F403 -from .util import ec # noqa: F403 -from .util import rsa # noqa: F403 -from .util import x509 # noqa: F403 +from .util import dh, dsa, ec, rsa, x509 # noqa: F401 _so = None _lib = None