(self, base_app_instance)
| 2522 | return () |
| 2523 | |
| 2524 | def show(self, base_app_instance): |
| 2525 | self._base_app_instance = base_app_instance |
| 2526 | self._old_root_widget = self._base_app_instance.root |
| 2527 | self._base_app_instance.set_root_widget(self) |
| 2528 | |
| 2529 | def hide(self): |
| 2530 | self._base_app_instance.set_root_widget(self._old_root_widget) |
no test coverage detected