17 lines
406 B
Python
17 lines
406 B
Python
#!/usr/bin/env python3
|
|
import re
|
|
|
|
with open('/Users/jonathan/code/anno-117/processed.md', 'r') as f:
|
|
content = f.read()
|
|
|
|
content = re.sub(
|
|
r'- \[~\] anno-117-skills_erfindergeist\.json',
|
|
'- [x] anno-117-skills_erfindergeist.json',
|
|
content
|
|
)
|
|
|
|
with open('/Users/jonathan/code/anno-117/processed.md', 'w') as f:
|
|
f.write(content)
|
|
|
|
print('Updated anno-117-skills_erfindergeist.json to [x]')
|