Skip to content

Commit f1ed2ea

Browse files
committed
ruff: exclusions on imports
ignore import locations and import used for side effect
1 parent 9d5ec1b commit f1ed2ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/scripts/roundup_admin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232

3333

3434
# python version check - import exits if version invalid
35-
from roundup import version_check # noqa: F401
35+
from roundup import version_check # noqa: E402 F401
3636

3737
# import the admin tool guts and make it go
38-
from roundup.admin import AdminTool
38+
from roundup.admin import AdminTool # noqa: E402
3939

4040

4141
def run():

0 commit comments

Comments
 (0)