From 320c2f692e1b57d10c5fedc19d373e283f400182 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 24 Jun 2026 01:05:12 +0900 Subject: [PATCH] chore: more explicit library name --- dzgui/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dzgui/main.py b/dzgui/main.py index 0bc84a8..c8357a5 100644 --- a/dzgui/main.py +++ b/dzgui/main.py @@ -14,6 +14,7 @@ parser.add_argument("-u", "--uninstall", action="store_true", help=flags.uninsta parser.add_argument("-d", "--debug", action="store_true", help=flags.debug) args = parser.parse_args() + def uninstall() -> None: # TODO: uninstall data files (-u) # -u removes state, log, freedesktop @@ -22,6 +23,7 @@ def uninstall() -> None: # XDG_DATA_HOME/dzgui pass + def main() -> None: lock = lock_acquire() # noqa @@ -39,6 +41,7 @@ def main() -> None: print(f"{APP_NAME} {version}") test_libgi_missing() - # NOTE: only import ligbi modules after the above check + # NOTE: only import ligbirepository modules after the above check from dzgui.app_init import load_gui + load_gui(version, args.debug)