1
0

wizard.py: fix clearing stack between wizards

try finishing a wizard and then launching a new one: the new one kept
building on top of the stack of the prev wizard
This commit is contained in:
SomberNight
2023-04-23 00:50:29 +00:00
committed by accumulator
parent 417423ecd7
commit fd9a90f3b6

View File

@@ -130,7 +130,7 @@ class AbstractWizard:
self._logger.debug('finished.')
def reset(self):
self.stack = []
self._stack = []
self._current = WizardViewState(None, {}, {})
def log_stack(self, _stack):