nboard/clean.py
2022-01-26 21:29:17 -05:00

16 lines
261 B
Python
Executable file

#!/usr/bin/env python3
import json
with open("nboard.json", "r") as file:
data = json.load(file)
print(len(data))
data = {k: v for k, v in data.items() if v is not " "}
print(len(data))
with open("nboard.json", "w") as file:
json.dump(data, file)