From 1609d7fbe2bb97945d7fb6e0381b58239c6266a2 Mon Sep 17 00:00:00 2001 From: Marc Mance Date: Wed, 31 Jul 2024 18:12:36 -0400 Subject: [PATCH] string to fstring --- collect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collect.py b/collect.py index 85f11c8..494ffb0 100644 --- a/collect.py +++ b/collect.py @@ -384,7 +384,7 @@ def main(): minutesToWait = 0 if minutesToWait: - print("Delaying capture by {minutesToWait} minutes...") + print(f"Delaying capture by {minutesToWait} minutes...") for i in range(minutesToWait): print(f"{i} ", end="", flush=True) time.sleep(minutesToWait * 60)