fix: drop f-string

This commit is contained in:
aclist 2026-07-27 20:39:38 +09:00
parent 87e0af33cc
commit 7c79b17fdc

View File

@ -37,7 +37,7 @@ def write_desktop_file(exe_path: Path) -> Path:
def write_desktop_shortcut(desktop_file: Path) -> None:
# NOTE: necessarily depends on the above (UI blocks creation without XDG entry first)
link = Path.home().joinpath(f"Desktop/dzgui.desktop")
link = Path.home().joinpath("Desktop/dzgui.desktop")
make_parents(link)
if link.exists():
link.unlink()