use args from CallbackContext

This commit is contained in:
jaskaranSM 2020-04-16 13:28:44 +05:30
parent 8341fe08c8
commit 236b6eb30e

View File

@ -30,12 +30,12 @@ def _watch(bot: Bot, update: Update, args: list, isTar=False):
@run_async
def watchTar(update, context, args):
_watch(context.bot, update, args, True)
def watchTar(update, context):
_watch(context.bot, update, context.args, True)
def watch(update, context, args):
_watch(context.bot, update, args)
def watch(update, context):
_watch(context.bot, update, context.args)
mirror_handler = CommandHandler(BotCommands.WatchCommand, watch,