Use relative imports always where possible

This commit is contained in:
Lonami Exo
2017-05-21 13:02:54 +02:00
parent ca80b05694
commit 63c89af983
17 changed files with 104 additions and 81 deletions

View File

@@ -1,10 +1,10 @@
import os
import time
import telethon.helpers as utils
from telethon.crypto import AES, RSA, AuthKey, Factorizator
from telethon.network import MtProtoPlainSender
from telethon.utils import BinaryReader, BinaryWriter
from .. import helpers as utils
from ..crypto import AES, RSA, AuthKey, Factorizator
from ..network import MtProtoPlainSender
from ..utils import BinaryReader, BinaryWriter
def do_authentication(transport):