Skip to content

Commit

Permalink
style: apply automated linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megalinter-bot committed Nov 28, 2023
1 parent b82df25 commit 3dc7195
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/safeds_runner/server/pipeline_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,9 @@ def _execute(self) -> None:
global current_pipeline # noqa: PLW0603
current_pipeline = self
try:
runpy.run_module(main_module if len(self.modulepath) == 0 else f"{self.modulepath}.{main_module}",
run_name="__main__")
runpy.run_module(
main_module if len(self.modulepath) == 0 else f"{self.modulepath}.{main_module}", run_name="__main__",
)
self._send_message("progress", create_runtime_progress_done())
except BaseException as error: # noqa: BLE001
self._send_exception(error)
Expand Down

0 comments on commit 3dc7195

Please sign in to comment.