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