1
0
Fork 0

fix: Forgot to use string.format, replaced with f-string

This commit is contained in:
Benedikt Bastin 2021-04-14 10:49:56 +02:00
parent a9645196cd
commit c144daaf0b
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ print_stand = stand_date.isoformat()
filename_stand = stand_date.strftime("%Y%m%d%H%M%S")
print("Effective {}, last reported date {}", stand_date, dates.iloc[-1].date())
print(f"Effective {stand_date}, last reported date {dates.iloc[-1].date()}")
'''