Skip to content

Commit 8e084df

Browse files
committed
Code cleanup
1 parent a140621 commit 8e084df

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
@@ -569,7 +569,7 @@ async def run_update() -> None:
569569
else:
570570
self._current_activation_error = err
571571
return
572-
except BaseException as err:
572+
except BaseException:
573573
if self._deleting:
574574
if LOG_IGNORE_DURING_DELETE:
575575
logger.debug(
@@ -865,7 +865,7 @@ async def run_workflow(input: ExecuteWorkflowInput) -> None:
865865
)
866866
self._primary_task = self.create_task(
867867
self._run_top_level_workflow_function(run_workflow(input)),
868-
name=f"run",
868+
name="run",
869869
)
870870

871871
def _apply_update_random_seed(

0 commit comments

Comments
 (0)