Skip to content

Commit 3d7f345

Browse files
committed
fix(start_tg_bot): fix mypy errors (#62)
1 parent fb067ec commit 3d7f345

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ttt/main/tg_bot/start_tg_bot.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from aiogram.types import TelegramObject
77
from dishka import AsyncContainer
88
from dishka.integrations.aiogram import AiogramMiddlewareData
9-
from taskiq import TaskiqMessage
109

1110
from ttt.infrastructure.processors.processor import Processor
1211
from ttt.main.common.next_container import NextContainerWithFilledContext
@@ -18,7 +17,7 @@
1817
async def start_tg_bot(container: AsyncContainer) -> None:
1918
next_container = NextContainerWithFilledContext(
2019
container,
21-
(TelegramObject, AiogramMiddlewareData, TaskiqMessage),
20+
(TelegramObject, AiogramMiddlewareData),
2221
)
2322

2423
dp = await container.get(Dispatcher)

0 commit comments

Comments
 (0)