openpetswithchatandmcp/website/update_todo_2.py
OpenPets Dev 65ac83849e Add 'website/' from commit '966aea480ffe1c340553aa878def30131d2af827'
git-subtree-dir: website
git-subtree-mainline: 8d3849caea
git-subtree-split: 966aea480f
2026-06-17 20:48:39 +00:00

11 lines
426 B
Python
Executable file

import re
with open('c:/ScriptoriumAI/docs/ToDo.md', 'r', encoding='utf-8') as f:
text = f.read()
text = text.replace('- [ ] Loading states and skeletons', '- [x] Loading states and skeletons')
text = text.replace('- [ ] Conflict handling and resolution UI', '- [x] Conflict handling and resolution UI')
with open('c:/ScriptoriumAI/docs/ToDo.md', 'w', encoding='utf-8') as f:
f.write(text)
print('Updated ToDo 2!')