Skip to content

Commit

Permalink
Update thonkify.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Santo-Philip authored May 11, 2020
1 parent 425199e commit 2a6b67e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tg_bot/modules/thonkify.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@run_async
def thonkify(bot: Bot, update: Update):
def thonk(bot: Bot, update: Update):
from tg_bot.modules.thonkify_dict import thonkifydict

message = update.effective_message
Expand Down Expand Up @@ -59,9 +59,9 @@ def thonkify(bot: Bot, update: Update):

__help__ = """
thonkify very imp
made by @rupansh and @devrism :D
"""
__mod_name__ = "Thonkify"

THONKIFY_HANDLER = DisableAbleCommandHandler("thonkify", thonkify, admin_ok=True)
dispatcher.add_handler(THONKIFY_HANDLER)
THONK_HANDLER = DisableAbleCommandHandler("thonk", thonk, admin_ok=True)
dispatcher.add_handler(THONK_HANDLER)

0 comments on commit 2a6b67e

Please sign in to comment.