diff --git a/aes_pkcs5/__init__.py b/aes_pkcs5/__init__.py index 6bd747d..b48930e 100644 --- a/aes_pkcs5/__init__.py +++ b/aes_pkcs5/__init__.py @@ -1,10 +1,9 @@ -from sys import version_info - from importlib.metadata import metadata +from sys import version_info _pkg_info = metadata("aes_pkcs5") __version__ = _pkg_info["Version"] __author__ = _pkg_info["Author"] -__all__ = ("__version__", "__author__") \ No newline at end of file +__all__ = ("__version__", "__author__") diff --git a/setup.py b/setup.py index 6e26fab..31f43fb 100644 --- a/setup.py +++ b/setup.py @@ -12,4 +12,4 @@ def install_for_development(self): system("pre-commit install") -setup(cmdclass={"develop": CustomDevelopCommand}) \ No newline at end of file +setup(cmdclass={"develop": CustomDevelopCommand})