diff --git a/dumpyarabot/__main__.py b/dumpyarabot/__main__.py index 9612dff..98ec9f5 100644 --- a/dumpyarabot/__main__.py +++ b/dumpyarabot/__main__.py @@ -3,7 +3,7 @@ from telegram.ext import ApplicationBuilder, CommandHandler -from dumpyarabot.handlers import cancel_dump, dump, restart +from dumpyarabot.handlers import cancel_dump, dump from .config import settings @@ -13,10 +13,11 @@ dump_handler = CommandHandler("dump", dump) cancel_dump_handler = CommandHandler("cancel", cancel_dump) - restart_handler = CommandHandler("restart", restart) + # TODO: Fix the restart handler implementation + # restart_handler = CommandHandler("restart", restart) application.add_handler(dump_handler) application.add_handler(cancel_dump_handler) - application.add_handler(restart_handler) + # application.add_handler(restart_handler) application.run_polling()