Skip to content

Commit

Permalink
Create FixTable_1.3.x_to_1.4.x.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MainKronos committed May 20, 2021
1 parent 978e03b commit 8796c61
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions documentation/other/FixTable_1.3.x_to_1.4.x.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import json

table = None

with open("table.json", 'r') as f:
table = json.loads(f.read())

for row in table:
row["absolute"] = False

with open("table.json", 'w') as f:
f.write(json.dumps(table, indent=4))

0 comments on commit 8796c61

Please sign in to comment.