Поправлены импорты

This commit is contained in:
Денис Семёнов 2025-06-23 09:51:20 +03:00
parent 512eb9a4af
commit 63af421777
4 changed files with 4 additions and 6 deletions

View File

@ -1,8 +1,7 @@
from datetime import datetime from datetime import datetime
from typing import Any, Dict, List, TYPE_CHECKING, Optional from typing import Any, Dict, List, TYPE_CHECKING, Optional
from maxapi.methods.download_media import DownloadMedia from .methods.download_media import DownloadMedia
from .methods.get_upload_url import GetUploadURL from .methods.get_upload_url import GetUploadURL
from .methods.get_updates import GetUpdates from .methods.get_updates import GetUpdates
from .methods.remove_member_chat import RemoveMemberChat from .methods.remove_member_chat import RemoveMemberChat

View File

@ -6,8 +6,7 @@ from magic_filter import MagicFilter
from uvicorn import Config, Server from uvicorn import Config, Server
from aiohttp import ClientConnectorError from aiohttp import ClientConnectorError
from maxapi.filters.middleware import BaseMiddleware from .filters.middleware import BaseMiddleware
from .filters.handler import Handler from .filters.handler import Handler
from .context import MemoryContext from .context import MemoryContext

View File

@ -1,6 +1,6 @@
from typing import Optional from typing import Optional
from maxapi.enums.button_type import ButtonType from ....enums.button_type import ButtonType
from .button import Button from .button import Button

View File

@ -1,4 +1,4 @@
from maxapi.types.attachments.buttons import InlineButtonUnion from ..types.attachments.buttons import InlineButtonUnion
from ..enums.attachment import AttachmentType from ..enums.attachment import AttachmentType
from ..types.attachments.attachment import Attachment, ButtonsPayload from ..types.attachments.attachment import Attachment, ButtonsPayload