Update NYT.py

This commit is contained in:
2023-11-15 10:58:17 -05:00
committed by GitHub
parent 13400c3ebf
commit 150adb83ad

2
NYT.py
View File

@@ -34,7 +34,7 @@ EasyList = ["Easy",Dict["easy"]["puzzle_id"],Dict["easy"]["published"],Dict["eas
# Open our existing CSV file in append mode # Open our existing CSV file in append mode
# Create a file object for this file # Create a file object for this file
with open('data/NYTSudoku.csv', 'a') as f_object: with open('NYTSudoku.csv', 'a') as f_object:
# Pass this file object to csv.writer() # Pass this file object to csv.writer()
# and get a writer object # and get a writer object
writer_object = writer(f_object) writer_object = writer(f_object)