Skip to content

Commit 6653a4e

Browse files
authored
Removed requirement for root for pylint (#3138)
1 parent 7ccc288 commit 6653a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archinstall/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def define_arguments() -> None:
9090
help="Skip the version check when running archinstall")
9191

9292

93-
if 'sphinx' not in sys.modules:
93+
if 'sphinx' not in sys.modules and 'pylint' not in sys.modules:
9494
if '--help' in sys.argv or '-h' in sys.argv:
9595
define_arguments()
9696
parser.print_help()

0 commit comments

Comments
 (0)