From 5de8350d857ae3bfc10a9b882430e3af34ba28cf Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Sun, 22 Oct 2017 11:23:15 +0200 Subject: [PATCH] Reorder another import for #357 --- telethon/tl/entity_database.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/telethon/tl/entity_database.py b/telethon/tl/entity_database.py index 554e2a5a..b0fc70fb 100644 --- a/telethon/tl/entity_database.py +++ b/telethon/tl/entity_database.py @@ -1,13 +1,12 @@ +import re from threading import Lock -import re - -from .. import utils from ..tl import TLObject from ..tl.types import ( User, Chat, Channel, PeerUser, PeerChat, PeerChannel, InputPeerUser, InputPeerChat, InputPeerChannel ) +from .. import utils # Keep this line the last to maybe fix #357 class EntityDatabase: