Skip to content

Commit

Permalink
feat: Updated claims/fix_dump.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Jan 3, 2024
1 parent b31573d commit 1010be7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions claims/fix_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
# ---
files = ["claims_test_fixed.json", "claims_fixed.json"]
# ---
for _f in files:
if os.path.exists(f"{Dump_Dir}/{_f}"):
with open(f"{Dump_Dir}/{_f}", "w", encoding="utf-8") as f:
for file_name in files:
if os.path.exists(f"{Dump_Dir}/{file_name}"):
with open(f"{Dump_Dir}/{file_name}", "w", encoding="utf-8") as f:
json.dump({}, f)


Expand Down

0 comments on commit 1010be7

Please sign in to comment.