From d08172b4b0e08e52523cb93b723ccac9a3da3823 Mon Sep 17 00:00:00 2001 From: Harshil <37377066+harshil21@users.noreply.github.com> Date: Mon, 7 Jun 2021 12:35:17 +0530 Subject: [PATCH] Remove Deprecated pass_args from Deeplinking Example (#2550) --- examples/deeplinking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/deeplinking.py b/examples/deeplinking.py index c7e99d8ef..3c6a5d890 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