From 150adb83ad1a89526ad5d10ac4ae514f291f1f09 Mon Sep 17 00:00:00 2001 From: sstent Date: Wed, 15 Nov 2023 10:58:17 -0500 Subject: [PATCH] Update NYT.py --- NYT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NYT.py b/NYT.py index fa1f9ef..1d6f4c8 100644 --- a/NYT.py +++ b/NYT.py @@ -34,7 +34,7 @@ EasyList = ["Easy",Dict["easy"]["puzzle_id"],Dict["easy"]["published"],Dict["eas # Open our existing CSV file in append mode # 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() # and get a writer object writer_object = writer(f_object)