Files
xiaoxia-saas/fix_script.py
T
xiaoxia 52ff2f80ad
CI/CD Pipeline / Validate Code Quality And Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Lint (push) Has been cancelled
Deploy / Deploy Staging (push) Has been cancelled
Deploy / Build Production Runtime Images (push) Has been cancelled
Deploy / Deploy Production (push) Has been cancelled
Deploy / Production Browser E2E (push) Has been cancelled
style: apply black formatting to pass CI validation (#126)
2026-06-30 17:23:08 +08:00

9 lines
451 B
Python

content = open("F:/openclaw-saas/scripts/init_tracker_data.py", "r", encoding="utf-8").read()
content = content.replace('"title":', '"name":')
content = content.replace('"URGENT"', '"urgent"')
content = content.replace('"HIGH"', '"high"')
content = content.replace('"MEDIUM"', '"medium"')
content = content.replace('"LOW"', '"low"')
open("F:/openclaw-saas/scripts/init_tracker_data.py", "w", encoding="utf-8").write(content)
print("Fixed all fields")