Functions: Remove fstring from mark_file file path

Signed-off-by: Luis Garcia <git@luigi311.com>
This commit is contained in:
Luis Garcia
2025-05-15 03:46:51 +00:00
parent 3e474a4593
commit 69cd73d965

View File

@@ -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")