From 6e375d3f241695c57f3055a382ea97bb5217f5cd Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 21 Nov 2024 23:58:38 +0900 Subject: [PATCH] fix: drop unused parameter --- helpers/funcs | 1 + helpers/ui.py | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/helpers/funcs b/helpers/funcs index 4642378..6f2404d 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -158,6 +158,7 @@ find_stale_mods(){ printf "%s\n" "$res" >> $_cache_stale_mods_temp fi done + printf "" return 99 } get_player_count(){ diff --git a/helpers/ui.py b/helpers/ui.py index 1270ace..5753fa8 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -651,7 +651,7 @@ def process_shell_return_code(transient_parent, msg, code, original_input): case 99: # highlight stale mods panel = transient_parent.grid.sel_panel - panel.colorize_cells(msg, True) + panel.colorize_cells(True) case 100: # final handoff before launch final_conf = spawn_dialog(transient_parent, msg, Popup.CONFIRM) @@ -2379,9 +2379,9 @@ class ModSelectionPanel(Gtk.Box): case "Highlight stale": process_tree_option([treeview.view, RowType.HIGHLIGHT], treeview) case "Unhighlight stale": - self.colorize_cells(None, False) + self.colorize_cells(False) - def colorize_cells(self, mods, bool): + def colorize_cells(self, bool): def _colorize(path, color): mod_store[path][4] = color