153153from ttt .presentation .tasks .auto_cancel_invitations_to_game_task import (
154154 AutoCancelInvitationsToGameTask ,
155155)
156- from ttt .presentation .tasks .complete_stars_purchase_payment_task import (
157- CompleteStarsPurchasePaymentTask ,
158- )
159156from ttt .presentation .tasks .matchmake_tasks import MatchmakeTasks
160157from ttt .presentation .tasks .unkillable_tasks import UnkillableTasks
161158from ttt .presentation .unkillable_task_group import UnkillableTaskGroup
@@ -269,12 +266,6 @@ def provide_auto_cancel_invitations_to_game_task(
269266 ),
270267 )
271268
272- @provide (scope = Scope .APP )
273- def provide_complete_stars_purchase_payment_task (
274- self ,
275- ) -> CompleteStarsPurchasePaymentTask :
276- return CompleteStarsPurchasePaymentTask ()
277-
278269 @provide (scope = Scope .APP )
279270 def provide_matchmake_tasks (
280271 self ,
@@ -301,12 +292,10 @@ async def unkillable_tasks(
301292 self ,
302293 task_group : UnkillableTaskGroup ,
303294 auto_cancel_invitations_to_game_task : AutoCancelInvitationsToGameTask ,
304- complete_stars_purchase_payment_task : CompleteStarsPurchasePaymentTask ,
305295 matchmake_tasks : MatchmakeTasks ,
306296 ) -> UnkillableTasks :
307297 tasks = (
308298 auto_cancel_invitations_to_game_task ,
309- complete_stars_purchase_payment_task ,
310299 matchmake_tasks ,
311300 )
312301 return UnkillableTasks (tasks , task_group )
0 commit comments