refactor: [30388f42] Strukturiere Root-Skripte thematisch neu
- Organisiert eine Vielzahl von Skripten aus dem Root-Verzeichnis in thematische Unterordner, um die Übersichtlichkeit zu verbessern und die Migration vorzubereiten. - Verschiebt SuperOffice-bezogene Test- und Hilfsskripte in . - Verschiebt Notion-bezogene Synchronisations- und Import-Skripte in . - Archiviert eindeutig veraltete und ungenutzte Skripte in . - Die zentralen Helfer und bleiben im Root, da sie von mehreren Tools als Abhängigkeit genutzt werden.
This commit is contained in:
12
ARCHIVE_legacy_scripts/check_syntax.py
Normal file
12
ARCHIVE_legacy_scripts/check_syntax.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import py_compile
|
||||
import sys
|
||||
|
||||
try:
|
||||
py_compile.compile('/app/competitor-analysis-app/competitor_analysis_orchestrator.py', doraise=True)
|
||||
print("Syntax OK")
|
||||
except py_compile.PyCompileError as e:
|
||||
print(f"Syntax Error: {e}")
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"General Error: {e}")
|
||||
sys.exit(1)
|
||||
Reference in New Issue
Block a user