mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 09:55:21 +00:00
I think exceptions module is utility.
This commit is contained in:
parent
38bad5454e
commit
2346ade309
3 changed files with 3 additions and 3 deletions
|
|
@ -5,9 +5,9 @@ from http import HTTPStatus
|
||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
|
|
||||||
from ..exceptions import ValidationError, TelegramAPIError, BadRequest, Unauthorized, NetworkError, RetryAfter, \
|
|
||||||
MigrateToChat
|
|
||||||
from ..utils import json
|
from ..utils import json
|
||||||
|
from ..utils.exceptions import ValidationError, TelegramAPIError, BadRequest, Unauthorized, NetworkError, RetryAfter, \
|
||||||
|
MigrateToChat
|
||||||
from ..utils.helper import Helper, HelperMode, Item
|
from ..utils.helper import Helper, HelperMode, Item
|
||||||
|
|
||||||
# Main aiogram logger
|
# Main aiogram logger
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ from .venue import Venue
|
||||||
from .video import Video
|
from .video import Video
|
||||||
from .video_note import VideoNote
|
from .video_note import VideoNote
|
||||||
from .voice import Voice
|
from .voice import Voice
|
||||||
from ..exceptions import TelegramAPIError
|
from ..utils.exceptions import TelegramAPIError
|
||||||
from ..utils.helper import Item, HelperMode, Helper, ListItem
|
from ..utils.helper import Item, HelperMode, Helper, ListItem
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue