fix: Use datetime instead of string for effective date
This commit is contained in:
parent
05cc86f6e2
commit
297e81029f
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, dates.iloc[-1].date())
|
print("Effective {}, last reported date {}", stand_date, dates.iloc[-1].date())
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue