Skip to content

Commit

Permalink
refactor: remove write mode
Browse files Browse the repository at this point in the history
  • Loading branch information
izikeros committed Mar 23, 2024
1 parent 761ab1d commit 886f551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gecko_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def get_coingecko_front_page(


def save_responses(responses):
with open(data_full_file, "wt") as file_out:
with open(data_full_file, "w") as file_out:
json.dump(responses, file_out)
log.info(f"Fetcher - Responses saved to: {data_full_file}, exiting")

Expand Down

0 comments on commit 886f551

Please sign in to comment.