From 6653a4e5a9e703a65d0ea2bbc4ff8a0b9e116521 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 22 Jan 2025 19:46:44 +0100 Subject: [PATCH] Removed requirement for root for pylint (#3138) --- archinstall/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/__init__.py b/archinstall/__init__.py index 38a2b32594..f3f022d7e5 100644 --- a/archinstall/__init__.py +++ b/archinstall/__init__.py @@ -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()