adding data
This commit is contained in:
16
update_processed.py
Normal file
16
update_processed.py
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/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]')
|
||||
Reference in New Issue
Block a user