2025-11-04 05:17:27 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
2025-11-04 08:05:08 +01:00
|
|
|
# Trigger build
|
|
|
|
|
|
2025-11-06 15:15:06 +01:00
|
|
|
import sys
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
# Add current directory to path to ensure imports work
|
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
|
|
2025-11-04 05:17:27 +01:00
|
|
|
from pr.__main__ import main
|
|
|
|
|
|
2025-11-04 08:09:12 +01:00
|
|
|
if __name__ == "__main__":
|
2025-11-04 05:17:27 +01:00
|
|
|
main()
|