Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfootjon committed Mar 6, 2024
1 parent e74a1d5 commit b01add9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keyedarchivelib/__init__.py
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -25,7 +25,7 @@
author_email="[email protected]",
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",
Expand Down

0 comments on commit b01add9

Please sign in to comment.