Skip to content

Commit

Permalink
*Fixed residue of f string
Browse files Browse the repository at this point in the history
  • Loading branch information
BourgonLaurent committed Jul 24, 2019
1 parent 6f2beb0 commit 1b3bdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyParker.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def retrieveWaitTime(park, ids):
def writeWaitTime(park, data):
global configfile, folderSwitcher
for att in data:
fp = configfile["datapath"] + "/{}/{att}.csv".format(folderSwitcher.get(park), att)
fp = configfile["datapath"] + "/{}/{}.csv".format(folderSwitcher.get(park), att)
with open(fp, "a") as file_fp:
headers = "Date,Time,Wait\n"
with open(fp, "r") as file_r:
Expand Down

0 comments on commit 1b3bdba

Please sign in to comment.