fix: Forgot to use string.format, replaced with f-string
This commit is contained in:
parent
a9645196cd
commit
c144daaf0b
1 changed files with 1 additions and 1 deletions
2
plot.py
2
plot.py
|
@ -190,7 +190,7 @@ print_stand = stand_date.isoformat()
|
||||||
|
|
||||||
filename_stand = stand_date.strftime("%Y%m%d%H%M%S")
|
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()}")
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue