mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fixed imports
This commit is contained in:
parent
e84b8b92e6
commit
00702f07ce
1 changed files with 7 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue