diff --git a/keyedarchivelib/__init__.py b/keyedarchivelib/__init__.py index 24e15f2..c5c17a1 100644 --- a/keyedarchivelib/__init__.py +++ b/keyedarchivelib/__init__.py @@ -1,2 +1,2 @@ from keyedarchivelib.api import dump, dumps, load, loads # noqa: F401 -from keyedarchivelib.version import VERSION # noqa: F401 +from keyedarchivelib.version import VERSION # noqa: F401 diff --git a/setup.py b/setup.py index 07ce78e..d7e1441 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ name="keyedarchivelib", package_data={"keyedarchivelib": ["py.typed"]}, packages=find_packages(exclude=["test", "test.*"]), - version=VERSION, + version=VERSION, # noqa: F821 python_requires=">=3.8", description="Generate and parse NSKeyedArchive files", long_description=long_description, @@ -25,7 +25,7 @@ author_email="jon@jonjanzen.com", url="https://github.com/bigfootjon/keyedarchivelib", download_url="https://github.com/bigfootjon/keyedarchivelib/tarball/" - + VERSION, + + VERSION, # noqa: F821 keywords=[], classifiers=[ "Development Status :: 5 - Production/Stable",