style: fix a few style issues by hand
This commit is contained in:
@@ -554,13 +554,13 @@ class TutorialManager(QObject):
|
||||
|
||||
return None
|
||||
|
||||
def _run_setup_actions(self, step: TutorialStep) -> None:
|
||||
def _run_setup_actions(self, step: TutorialStepDefinition) -> None:
|
||||
if self.context is None:
|
||||
return
|
||||
for action in step.setup_actions:
|
||||
self.action_executor.execute_action(action, self.context)
|
||||
|
||||
def _run_cleanup_actions(self, step: TutorialStep) -> None:
|
||||
def _run_cleanup_actions(self, step: TutorialStepDefinition) -> None:
|
||||
if self.context is None:
|
||||
return
|
||||
for action in step.cleanup_actions:
|
||||
|
||||
Reference in New Issue
Block a user