From 2407a499b7ef57af077b6e7bd2d88212fec58d1d Mon Sep 17 00:00:00 2001 From: Harshil <37377066+harshil21@users.noreply.github.com> Date: Sun, 6 Jun 2021 19:44:27 +0530 Subject: [PATCH] remove deprecated arg from deeplinking.py --- examples/deeplinking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deeplinking.py b/examples/deeplinking.py index c7e99d8ef43..3c6a5d890ae 100644 --- a/examples/deeplinking.py +++ b/examples/deeplinking.py @@ -124,7 +124,7 @@ def main() -> None: # We can also pass on the deep-linking payload dispatcher.add_handler( - CommandHandler("start", deep_linked_level_3, Filters.regex(USING_ENTITIES), pass_args=True) + CommandHandler("start", deep_linked_level_3, Filters.regex(USING_ENTITIES)) ) # Possible with inline keyboard buttons as well