From 88705400422a17357e3d2300eaa97c972854f89c Mon Sep 17 00:00:00 2001 From: Sourcery AI <> Date: Wed, 6 Jul 2022 16:34:26 +0000 Subject: [PATCH] 'Refactored by Sourcery' --- tasks/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.py b/tasks/main.py index ef8cf13..76a818e 100644 --- a/tasks/main.py +++ b/tasks/main.py @@ -3,7 +3,7 @@ @task(schedule="@hourly") def hello_world(): - print("Hello world, the time is {}".format(datetime.now())) + print(f"Hello world, the time is {datetime.now()}") if __name__ == '__main__': hello_world() \ No newline at end of file