We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d4860 commit f23b503Copy full SHA for f23b503
pyproject.toml
@@ -110,6 +110,7 @@ extend-select = [
110
"I", # isort - https://docs.astral.sh/ruff/rules/#isort-i
111
"UP", # pyupgrade - https://docs.astral.sh/ruff/rules/#pyupgrade-up
112
]
113
+unfixable = ["F401"]
114
ignore = [
115
116
isort.required-imports = [
tests/test_package.py
@@ -7,3 +7,7 @@
7
8
def test_version():
9
assert importlib.metadata.version("save_and_restore_api") == m.__version__
10
+
11
12
+def test_import():
13
+ from save_and_restore_api.tools.upload import SaveRestoreAPI # noqa: F401
0 commit comments