Commit 7b3f46eb authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Fix json.dump

parent 45618ddd
......@@ -89,7 +89,7 @@ def writeJSON(Tweet, file):
}
with open(file, "a", newline='', encoding="utf-8") as json_file:
json_dump(data, json_file)
json.dump(data, json_file)
json_file.write("\n")
def getText(tweet):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment