Skip to content

Commit

Permalink
Removed requirement for root for pylint (#3138)
Browse files Browse the repository at this point in the history
  • Loading branch information
Torxed authored Jan 22, 2025
1 parent 7ccc288 commit 6653a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archinstall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def define_arguments() -> None:
help="Skip the version check when running archinstall")


if 'sphinx' not in sys.modules:
if 'sphinx' not in sys.modules and 'pylint' not in sys.modules:
if '--help' in sys.argv or '-h' in sys.argv:
define_arguments()
parser.print_help()
Expand Down

0 comments on commit 6653a4e

Please sign in to comment.