Skip to content

Commit 0410aac

Browse files
committed
flake8: disable warning on import of version_check not used
also add comment. import version_check will exit if it fails.
1 parent 5511d1a commit 0410aac

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
@@ -33,8 +33,8 @@
3333
# --/
3434

3535

36-
# python version check
37-
from roundup import version_check
36+
# python version check - import exits if version invalid
37+
from roundup import version_check # noqa: F401
3838

3939
# import the admin tool guts and make it go
4040
from roundup.admin import AdminTool

0 commit comments

Comments
 (0)