The push-CI gates (black/isort/mypy) had never actually run before the branch-trigger fix, and the codebase predates them. Formatting is now black/isort clean repo-wide. mypy keeps running but non-blocking: 86 pre-existing errors are a separate cleanup, not a gate to hold hostage.
16 lines
275 B
Python
16 lines
275 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Simple startup script for Thailand Water Monitor
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Add src directory to Python path
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
|
|
|
|
if __name__ == "__main__":
|
|
from src.main import main
|
|
|
|
main()
|