mirror of
https://github.com/vladmandic/automatic
synced 2026-08-30 09:01:01 +02:00
4f336d3aab
Signed-off-by: Vladimir Mandic <mandic00@live.com>
12 lines
282 B
Python
12 lines
282 B
Python
"""
|
|
# Core imports (always available)
|
|
import os
|
|
import sys
|
|
|
|
# Add current directory to path for fallback imports
|
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
|
parent_dir = os.path.dirname(current_dir)
|
|
if parent_dir not in sys.path:
|
|
sys.path.insert(0, parent_dir)
|
|
"""
|