From 18e414e2c1c2727d1614065a90aad285f6ea1628 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Fri, 27 Apr 2018 20:13:19 +0200 Subject: [PATCH] Add TODO --- pyrogram/client/filters/filters.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyrogram/client/filters/filters.py b/pyrogram/client/filters/filters.py index a73147c7..62595122 100644 --- a/pyrogram/client/filters/filters.py +++ b/pyrogram/client/filters/filters.py @@ -125,6 +125,8 @@ class Filters: pinned_message = build("PinnedMessage", lambda _, m: bool(m.pinned_message)) """Filter service messages for pinned messages.""" + # TODO: Add filters for reply markups + @staticmethod def command(command: str or list, prefix: str = "/", separator: str = " "): """Filter commands, i.e.: text messages starting with "/" or any other custom prefix.