From 2eba6e58f9f0eb983aedc25ea9b0c250bd52980a Mon Sep 17 00:00:00 2001 From: ColinShark Date: Sat, 1 Jun 2019 23:34:20 +0200 Subject: [PATCH] Remove Optionality for args --- pyrogram/client/filters/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrogram/client/filters/filters.py b/pyrogram/client/filters/filters.py index a3e39117..83e862e6 100644 --- a/pyrogram/client/filters/filters.py +++ b/pyrogram/client/filters/filters.py @@ -340,7 +340,7 @@ class Filters: and not message.outgoing))) @staticmethod - def data(data: str or bytes = None): + def data(data: str or bytes): """Filter callback queries for their data. Parameters: