Small pep8 changes

This commit is contained in:
Kellermann 2022-05-26 11:13:44 +02:00
parent e87a071b5d
commit a25ef4a4f3

View File

@ -7,9 +7,9 @@ __version__ = "0.0.1"
__license__ = "None" __license__ = "None"
import time
import sys import sys
from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.schedulers.background import BackgroundScheduler
import time
import pandas import pandas
from bot import bot from bot import bot
@ -67,7 +67,6 @@ if __name__ == "__main__":
test = pandas.DataFrame(session.query(User.telegram_id).all()) test = pandas.DataFrame(session.query(User.telegram_id).all())
for element in test["telegram_id"]: for element in test["telegram_id"]:
print(element) print(element)
start_challenges() start_challenges()
sys.exit(-1) sys.exit(-1)
except KeyboardInterrupt: except KeyboardInterrupt: