Skip to content

Commit

Permalink
Update 1.0-to-aardvark.py
Browse files Browse the repository at this point in the history
fix duplicate comma
  • Loading branch information
srappel authored Mar 7, 2024
1 parent fdc764c commit 6e11f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1.0-to-aardvark.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def schema_update(filepath):

# Write updated JSON to a new folder
filepath_updated = dir_new_schema + file
with open(filepath_updated, 'w', , encoding='utf8') as fw:
with open(filepath_updated, 'w', encoding='utf8') as fw:
j = json.dumps(data, indent=2)
fw.write(j)

Expand Down

0 comments on commit 6e11f88

Please # to comment.