I think exceptions module is utility.

This commit is contained in:
Alex Root Junior 2017-08-15 04:17:20 +03:00
parent 38bad5454e
commit 2346ade309
3 changed files with 3 additions and 3 deletions

View file

@ -5,9 +5,9 @@ from http import HTTPStatus
import aiohttp
from ..exceptions import ValidationError, TelegramAPIError, BadRequest, Unauthorized, NetworkError, RetryAfter, \
MigrateToChat
from ..utils import json
from ..utils.exceptions import ValidationError, TelegramAPIError, BadRequest, Unauthorized, NetworkError, RetryAfter, \
MigrateToChat
from ..utils.helper import Helper, HelperMode, Item
# Main aiogram logger

View file

@ -17,7 +17,7 @@ from .venue import Venue
from .video import Video
from .video_note import VideoNote
from .voice import Voice
from ..exceptions import TelegramAPIError
from ..utils.exceptions import TelegramAPIError
from ..utils.helper import Item, HelperMode, Helper, ListItem