style: fix a few style issues by hand
CI / lint (push) Failing after 56s
CI / test (3.11) (push) Skipped
CI / test (3.12) (push) Skipped
CI / lint (pull_request) Failing after 2m11s
CI / test (3.11) (pull_request) Skipped
CI / test (3.12) (pull_request) Skipped

This commit is contained in:
2026-07-27 14:57:29 +02:00
parent 6affbf9148
commit 2c237b6623
6 changed files with 23 additions and 25 deletions
+2 -2
View File
@@ -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: