11 lines
474 B
Python
11 lines
474 B
Python
#!/usr/bin/env python3
|
|
import json
|
|
data = json.load(open('automation/data/sustainability_topics.json', 'r', encoding='utf-8'))
|
|
for t in data:
|
|
if t['id'] in ['D01', 'B05']:
|
|
t['status'] = '待处理'
|
|
if 'ready_at' in t:
|
|
del t['ready_at']
|
|
json.dump(data, open('automation/data/sustainability_topics.json', 'w', encoding='utf-8'), ensure_ascii=False, indent=2)
|
|
print('已重置选题状态:', [t['id'] for t in data if t['id'] in ['D01','B05']])
|