Skip to content

Commit

Permalink
encoding issue, fix #4
Browse files Browse the repository at this point in the history
  • Loading branch information
ovosimpatico committed Feb 5, 2024
1 parent 84b19d1 commit dc350b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def listas():
# Retrieves tiktok likes and dates from user_data.json
import json

f = open("user_data.json")
f = open("user_data.json", encoding="utf-8")
linklist = []
datelist = []
data = json.load(f)
Expand Down

0 comments on commit dc350b7

Please sign in to comment.