diff --git a/NYT.py b/NYT.py index 1d6f4c8..fa1f9ef 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('NYTSudoku.csv', 'a') as f_object: +with open('data/NYTSudoku.csv', 'a') as f_object: # Pass this file object to csv.writer() # and get a writer object writer_object = writer(f_object)