Remove Deprecated pass_args from Deeplinking Example (#2550)

This commit is contained in:
Harshil 2021-06-07 12:35:17 +05:30 committed by GitHub
parent e982a5a567
commit d08172b4b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,7 @@ def main() -> None:
# We can also pass on the deep-linking payload # We can also pass on the deep-linking payload
dispatcher.add_handler( 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 # Possible with inline keyboard buttons as well