From dedb0bc19579afe2ac7f8ae83325f3c93e927adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Bu=C3=9Fmann?= Date: Thu, 20 Jun 2024 13:56:17 +0200 Subject: [PATCH] fixed formatting error --- things2reclaim/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/things2reclaim/main.py b/things2reclaim/main.py index 69f2295..24d0dc8 100755 --- a/things2reclaim/main.py +++ b/things2reclaim/main.py @@ -366,9 +366,9 @@ def display_current_task(): if current_task is None: utils.perror("No task is currently tracked in toggl") return - rprint((f"Current task: {current_task.description}\nStarted at:", + rprint(f"Current task: {current_task.description}\nStarted at:", f"{toggl_handler.get_start_time(current_task) - .astimezone(tz.gettz()).strftime("%H:%M")}")) + .astimezone(tz.gettz()).strftime("%H:%M")}") @app.command("sync")