1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Dependecies clearing

This commit is contained in:
Badiboy
2021-08-18 22:16:30 +03:00
parent fabcd93dd7
commit 022ef6a64c
4 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
from datetime import datetime
import logging

View File

@ -4,16 +4,16 @@ import re
import string
import threading
import traceback
import warnings
import functools
from typing import Any, Callable, List, Dict, Optional, Union
# noinspection PyPep8Naming
import queue as Queue
import logging
from telebot import types
try:
# noinspection PyPackageRequirements
from PIL import Image
from io import BytesIO
pil_imported = True