Skip to content

Commit fb664cf

Browse files
author
Joshua J. Berry
committed
fix formatting
1 parent 36b5f52 commit fb664cf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

temporalio/client.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5502,9 +5502,12 @@ async def create_schedule(self, input: CreateScheduleInput) -> ScheduleHandle:
55025502
overlap_policy=temporalio.api.enums.v1.ScheduleOverlapPolicy.ValueType(
55035503
input.schedule.policy.overlap
55045504
),
5505-
) if input.trigger_immediately else None,
5505+
)
5506+
if input.trigger_immediately
5507+
else None,
55065508
backfill_request=[b._to_proto() for b in input.backfill]
5507-
if input.backfill else None,
5509+
if input.backfill
5510+
else None,
55085511
)
55095512
try:
55105513
request = temporalio.api.workflowservice.v1.CreateScheduleRequest(

0 commit comments

Comments
 (0)