Fixed imports

This commit is contained in:
Alex Root Junior 2022-11-25 12:40:26 +02:00
parent e84b8b92e6
commit 00702f07ce
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC

View file

@ -1,6 +1,12 @@
from aiogram.types import Update
from __future__ import annotations
from typing import TYPE_CHECKING
from aiogram.types.base import MutableTelegramObject
if TYPE_CHECKING:
from .update import Update
class _ErrorEvent(MutableTelegramObject):
class Config: