index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2022-05-29 18:59:55 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 10:59:55 +0200 |
commit | 51714587962570c71fc2dd70de526a5172ad5b5c (patch) | |
tree | 555775068fb62fdf91e3b71856811b4aaff20c71 /archinstall/lib/menu | |
parent | 0601956b5bdf27ec497a94e7313ea22cf21ecbe0 (diff) |
-rw-r--r-- | archinstall/lib/menu/selection_menu.py | 12 |
diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py index 6a693730..d4a7ceef 100644 --- a/archinstall/lib/menu/selection_menu.py +++ b/archinstall/lib/menu/selection_menu.py @@ -227,7 +227,7 @@ class GeneralMenu: """ will be called before each action in the menu """ return - def post_callback(self, selector_name :str, value :Any): + def post_callback(self, selection_name: str = None, value: Any = None): """ will be called after each action in the menu """ return True @@ -327,12 +327,12 @@ class GeneralMenu: break cursor_pos += 1 - value = value.strip() + value = value.strip() - # if this calls returns false, we exit the menu - # we allow for an callback for special processing on realeasing control - if not self._process_selection(value): - break + # if this calls returns false, we exit the menu + # we allow for an callback for special processing on realeasing control + if not self._process_selection(value): + break if not self.is_context_mgr: self.__exit__() |