@@ -489,7 +489,7 @@ async def _on_schedule_event(self, schedule_id: ScheduleId) -> None:
489489 group_step_proxies ,
490490 )
491491 elif is_creating :
492- await self ._continue_handling_as_creation (
492+ await self ._continue_as_creation (
493493 steps_statuses ,
494494 schedule_data_proxy ,
495495 schedule_id ,
@@ -499,7 +499,7 @@ async def _on_schedule_event(self, schedule_id: ScheduleId) -> None:
499499 operation ,
500500 )
501501 else :
502- await self ._continue_handling_as_reverting (
502+ await self ._continue_as_reverting (
503503 steps_statuses ,
504504 schedule_data_proxy ,
505505 schedule_id ,
@@ -555,7 +555,7 @@ async def _continue_as_repeating_steps(
555555
556556 await enqueue_schedule_event (self .app , schedule_id )
557557
558- async def _continue_handling_as_creation (
558+ async def _continue_as_creation (
559559 self ,
560560 steps_statuses : dict [StepName , StepStatus ],
561561 schedule_data_proxy : ScheduleDataStoreProxy ,
@@ -637,7 +637,7 @@ async def _continue_handling_as_creation(
637637 direction = "creation" , steps_statuses = steps_statuses , schedule_id = schedule_id
638638 )
639639
640- async def _continue_handling_as_reverting (
640+ async def _continue_as_reverting (
641641 self ,
642642 steps_statuses : dict [StepName , StepStatus ],
643643 schedule_data_proxy : ScheduleDataStoreProxy ,
0 commit comments