index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | codefiles <11915375+codefiles@users.noreply.github.com> | 2023-10-13 03:50:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 18:50:35 +1100 |
commit | 7930ea58fd3c55b38ff73949d74e9227ff351b60 (patch) | |
tree | ddce118722a1b8e1e8d8521cca8188e300c31101 /archinstall/lib/menu/abstract_menu.py | |
parent | 5e59acf937c3bb9cfe6a3b7a0a264b9df00239ee (diff) |
-rw-r--r-- | archinstall/lib/menu/abstract_menu.py | 3 |
diff --git a/archinstall/lib/menu/abstract_menu.py b/archinstall/lib/menu/abstract_menu.py index 053f3c30..2ceb6ca7 100644 --- a/archinstall/lib/menu/abstract_menu.py +++ b/archinstall/lib/menu/abstract_menu.py @@ -252,7 +252,7 @@ class AbstractMenu: """ will be called before each action in the menu """ return - def post_callback(self, selection_name: str, value: Any): + def post_callback(self, selection_name: Optional[str] = None, value: Any = None): """ will be called after each action in the menu """ return True @@ -299,6 +299,7 @@ class AbstractMenu: def run(self, allow_reset: bool = False): self._sync_all() + self.post_callback() cursor_pos = None while True: |