We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 674a966 commit cda97bdCopy full SHA for cda97bd
math_bot/logic.py
@@ -378,8 +378,6 @@ def init_updater():
378
conversation_handler = ConversationHandler(
379
entry_points=[
380
CommandHandler('start', handle_start),
381
- CommandHandler('help', handle_help),
382
- CommandHandler('examples', handle_examples),
383
MessageHandler(Filters.all, handle_other_messages)
384
],
385
states={
@@ -419,6 +417,12 @@ def init_updater():
419
417
CommandHandler('cancel', handle_cancel)
420
418
]
421
)
+ dispatcher.add_handler(
+ CommandHandler('help', handle_help)
422
+ )
423
424
+ CommandHandler('examples', handle_examples)
425
426
dispatcher.add_handler(
427
CommandHandler('simple_mode', handle_simple_mode)
428
0 commit comments