Skip to content

Commit ebb8755

Browse files
committed
Code cleanup
1 parent ec795ed commit ebb8755

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

temporalio/worker/_workflow_instance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ async def run_update() -> None:
587587
else:
588588
self._current_activation_error = err
589589
return
590-
except BaseException as err:
590+
except BaseException:
591591
if self._deleting:
592592
if LOG_IGNORE_DURING_DELETE:
593593
logger.debug(
@@ -883,7 +883,7 @@ async def run_workflow(input: ExecuteWorkflowInput) -> None:
883883
)
884884
self._primary_task = self.create_task(
885885
self._run_top_level_workflow_function(run_workflow(input)),
886-
name=f"run",
886+
name="run",
887887
)
888888

889889
def _apply_update_random_seed(

0 commit comments

Comments
 (0)