11 lines
444 B
Python
Executable file
11 lines
444 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('- [ ] Conflict handling and resolution UI', '- [x] Conflict handling and resolution UI')
|
|
text = text.replace('- [ ] Error markers and diagnostics', '- [x] Error markers and diagnostics')
|
|
|
|
with open('c:/ScriptoriumAI/docs/ToDo.md', 'w', encoding='utf-8') as f:
|
|
f.write(text)
|
|
print('Updated ToDo for feature 2 & 3!')
|