Remove unused imports

This commit is contained in:
jrootjunior 2019-12-11 16:53:08 +02:00
parent 1cac963562
commit b5765eb9f7

View file

@ -1,12 +1,9 @@
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, Any, Dict, List, Tuple, Union
from typing import Any, Dict
from aiogram import Bot
from aiogram.api.types import TelegramObject
if TYPE_CHECKING: # pragma: no cover
from aiogram.dispatcher.event.handler import FilterType # NOQA: F401
class BaseHandlerMixin:
event: TelegramObject