remove unused import

This commit is contained in:
Artem Lavrenov 2022-01-21 22:25:06 +03:00
parent a07bf86c30
commit 7eb759d1fd
4 changed files with 2 additions and 4 deletions

View File

@ -6,7 +6,6 @@
# Important, command for chat_id and for group have a higher priority than for all
import asyncio
import os
import telebot
from telebot.async_telebot import AsyncTeleBot

View File

@ -5,7 +5,7 @@
# https://schedule.readthedocs.io
import asyncio
import os, aioschedule
import aioschedule
from telebot.async_telebot import AsyncTeleBot
API_TOKEN = '<api_token>'

View File

@ -5,7 +5,6 @@
# Important, to update the command menu, be sure to exit the chat with the bot and enter to chat again
# Important, command for chat_id and for group have a higher priority than for all
import os
import telebot

View File

@ -3,7 +3,7 @@
# This is a simple bot with schedule timer
# https://schedule.readthedocs.io
import os, time, threading, schedule
import time, threading, schedule
from telebot import TeleBot
API_TOKEN = '<api_token>'