From 3befb1276c3f0f3a235465f642ebecf71ffa154c Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 16 May 2026 02:08:39 +0900 Subject: [PATCH] chore: add return type annotation --- dzgui/managers/mods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzgui/managers/mods.py b/dzgui/managers/mods.py index bcbc810..e1199b2 100644 --- a/dzgui/managers/mods.py +++ b/dzgui/managers/mods.py @@ -105,7 +105,7 @@ class ModManager: func = StoredFunc(self._on_mods_deleted, iters) self.thread_man.set_cleanup_func(func) - def delete_single_mod(self, mod: str): + def delete_single_mod(self, mod: str) -> None: steam_path = Path(self.path) mods_path = get_local_mod_path(steam_path) app_path = PeFile.get_nested_app_path(steam_path, APPID_DAYZ)