Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Laerte committed Jul 19, 2023
1 parent 5066550 commit 073d86d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions aes_pkcs5/__init__.py
Original file line number Diff line number Diff line change
@@ -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__")
__all__ = ("__version__", "__author__")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def install_for_development(self):
system("pre-commit install")


setup(cmdclass={"develop": CustomDevelopCommand})
setup(cmdclass={"develop": CustomDevelopCommand})

0 comments on commit 073d86d

Please sign in to comment.