Skip to content

Commit 96d39c3

Browse files
committed
Format
1 parent 7ffac2c commit 96d39c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/worker/test_workflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6128,7 +6128,9 @@ async def this_signal_executes_second(self):
61286128
raise ApplicationError("Client should never see this error!")
61296129

61306130
async def ping_pong(self, cond: Callable[[], bool]):
6131-
workflow.logger.info("Ping pong: %d of %d", self.ping_pong_counter, self.ping_pong_max_count)
6131+
workflow.logger.info(
6132+
"Ping pong: %d of %d", self.ping_pong_counter, self.ping_pong_max_count
6133+
)
61326134
while self.ping_pong_counter < self.ping_pong_max_count:
61336135
workflow.logger.info("Ping pong wait: %d", self.ping_pong_counter)
61346136
await workflow.wait_condition(cond)

0 commit comments

Comments
 (0)