Relative folder structure

fixing root folder structure to run command easier
This commit is contained in:
Chuck
2025-04-07 21:06:07 -05:00
parent f7a8f75172
commit 4366ec9f37
2 changed files with 15 additions and 6 deletions

View File

@@ -1,5 +1,11 @@
#!/usr/bin/env python3
import os
import sys
# Add the project root directory to Python path
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from src.display_controller import main
if __name__ == "__main__":