Skip to content

Commit

Permalink
Update start.py
Browse files Browse the repository at this point in the history
fix minor bug encode
  • Loading branch information
khoirulaksara authored May 3, 2024
1 parent 66cac48 commit df61bd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@

# Write the updated data to the file
print_update_local_json()
with open(report_json_directory + filename + ".json", 'w') as file:
with open(report_json_directory + filename + ".json", 'w', encoding='utf-8') as file:
dump(users_data, file, indent=4)
print_successfully()

Expand Down

0 comments on commit df61bd4

Please sign in to comment.