Update telegram.py

This commit is contained in:
Eko Aprili Trisno 2021-02-04 01:16:27 +07:00 committed by GitHub
parent 69d62ef383
commit 21d3635e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -160,9 +160,9 @@ class Telegram(RPCHandler):
CallbackQueryHandler(self._status_table, pattern='update_status_table'),
CallbackQueryHandler(self._daily, pattern='update_daily'),
CallbackQueryHandler(self._profit, pattern='update_profit'),
CallbackQueryHandler(self._profit, pattern='update_balance'),
CallbackQueryHandler(self._profit, pattern='update_performance'),
CallbackQueryHandler(self._profit, pattern='update_count')
CallbackQueryHandler(self._balance, pattern='update_balance'),
CallbackQueryHandler(self._performance, pattern='update_performance'),
CallbackQueryHandler(self._count, pattern='update_count')
]
for handle in handles:
self._updater.dispatcher.add_handler(handle)