Skip to content

Commit 9e2ba07

Browse files
committed
fix: rename scripts directory to utils to resolve ModuleNotFoundError across mini-projects
1 parent c9b24c7 commit 9e2ba07

4 files changed

Lines changed: 1 addition & 1 deletion

File tree

math/Merge-Sort/Merge-Sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import importlib.util
1111

1212
# Load validation module directly to avoid broken package __init__.py
13-
_val_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "scripts", "validation.py"))
13+
_val_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "utils", "validation.py"))
1414
_val_spec = importlib.util.spec_from_file_location("validation", _val_path)
1515
_val_mod = importlib.util.module_from_spec(_val_spec)
1616
_val_spec.loader.exec_module(_val_mod)
File renamed without changes.

0 commit comments

Comments
 (0)