From 58a4710e8a252644436e106051d5d6dfa9250111 Mon Sep 17 00:00:00 2001 From: SonSanghee Date: Wed, 23 Jul 2025 11:19:51 +0900 Subject: [PATCH] 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. --- SuperClaude/__main__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/SuperClaude/__main__.py b/SuperClaude/__main__.py index 37861b4..58a44d9 100644 --- a/SuperClaude/__main__.py +++ b/SuperClaude/__main__.py @@ -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