Optimize imports

This commit is contained in:
Dan 2017-12-06 20:26:40 +01:00
parent 08d6912637
commit 740c96f0ea
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,6 @@ import re
from importlib import import_module from importlib import import_module
from pyrogram.api.types import RpcError from pyrogram.api.types import RpcError
from .exceptions.all import exceptions from .exceptions.all import exceptions

View File

@ -24,8 +24,6 @@ from collections import namedtuple
from configparser import ConfigParser from configparser import ConfigParser
from hashlib import sha256 from hashlib import sha256
from pyrogram.extensions import Markdown
from pyrogram.api import functions, types from pyrogram.api import functions, types
from pyrogram.api.core import Object from pyrogram.api.core import Object
from pyrogram.api.errors import ( from pyrogram.api.errors import (
@ -40,6 +38,7 @@ from pyrogram.api.types import (
Dialog, Message, Dialog, Message,
InputPeerEmpty, InputPeerSelf, InputPeerEmpty, InputPeerSelf,
InputPeerUser, InputPeerChat, InputPeerChannel) InputPeerUser, InputPeerChat, InputPeerChannel)
from pyrogram.extensions import Markdown
from pyrogram.session import Auth, Session from pyrogram.session import Auth, Session
log = logging.getLogger(__name__) log = logging.getLogger(__name__)