From c144daaf0be3c99fa55e59faf225e3c65f5c7b2a Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Wed, 14 Apr 2021 10:49:56 +0200 Subject: [PATCH] fix: Forgot to use string.format, replaced with f-string --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index 335426d..0bc05fb 100644 --- a/plot.py +++ b/plot.py @@ -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()}") '''