mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
7 lines
206 B
ReStructuredText
7 lines
206 B
ReStructuredText
Added possibility to combine filters or invert result
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
Text(text="demo") | Command(commands=["demo"])
|
|
MyFilter() & AnotherFilter()
|
|
~StateFilter(state='my-state')
|