Skip to content

Commit b414c62

Browse files
authored
removed unnecessary import modules.errors
1 parent 04903af commit b414c62

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

modules/launch_utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ def check_python_version():
4343
supported_minors = [7, 8, 9, 10, 11]
4444

4545
if not (major == 3 and minor in supported_minors):
46-
import modules.errors
47-
48-
modules.errors.print_error_explanation(f"""
46+
errors.print_error_explanation(f"""
4947
INCOMPATIBLE PYTHON VERSION
5048
5149
This program is tested with 3.10.6 Python, but you have {major}.{minor}.{micro}.

0 commit comments

Comments
 (0)