Replace star imports with literal values

This commit is contained in:
Kai A. Hiller
2018-07-26 16:42:17 +02:00
parent 08dd5b5b15
commit 01e153662e
8 changed files with 79 additions and 38 deletions
+4 -2
View File
@@ -14,12 +14,14 @@
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from typing import Dict, Awaitable, Optional, Match, Tuple, TYPE_CHECKING
from typing import Awaitable, Dict, List, Match, Optional, Tuple, TYPE_CHECKING
import logging
import asyncio
import re
from telethon.tl.types import *
from telethon.tl.types import (
TypeUpdate, UpdateNewMessage, UpdateNewChannelMessage, PeerUser,
UpdateShortChatMessage, UpdateShortMessage)
from telethon.tl.types import User as TLUser
from telethon.tl.types.contacts import ContactsNotModified
from telethon.tl.functions.contacts import GetContactsRequest, SearchRequest