refactor: remove duplicate import sys in __main__.py

The sys module was imported twice - once at line 14 with other standard
imports and again at line 22. The second import is redundant since sys
is already available from the first import.
This commit is contained in:
SonSanghee
2025-07-23 11:19:51 +09:00
parent 0b2c9c6c7a
commit 58a4710e8a

View File

@@ -19,7 +19,6 @@ from pathlib import Path
from typing import Dict, Callable
# Add the 'setup' directory to the Python import path (with deprecation-safe logic)
import sys
try:
# Python 3.9+ preferred modern way