From 69cd73d96530bf657903c0de1067543518d3dcdc Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Thu, 15 May 2025 03:46:51 +0000 Subject: [PATCH] Functions: Remove fstring from mark_file file path Signed-off-by: Luis Garcia --- src/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functions.py b/src/functions.py index a70c031..cd57aee 100644 --- a/src/functions.py +++ b/src/functions.py @@ -25,7 +25,7 @@ def log_marked( if duration: output += f"/{duration}" - with open(f"{mark_file}", "a", encoding="utf-8") as file: + with open(mark_file, "a", encoding="utf-8") as file: file.write(output + "\n")