Skip to content

Commit

Permalink
fix: add empty line at the end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav committed Jul 2, 2024
1 parent c102ad9 commit a868594
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/update_generic_ledger_app_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def process_file(chains_file_path):
update_existing_data_with_new_networks(existing_data, new_networks)
with open(chains_file_path, 'w') as f:
json.dump(existing_data, f, indent=4)
f.write('\n')

def main():
process_file(CHAINS_FILE_PATH)
Expand Down

0 comments on commit a868594

Please sign in to comment.