Remove unnecessary lambda from example (#3600)

This commit is contained in:
voed 2024-04-15 00:00:46 +03:00 committed by GitHub
parent df6d0246db
commit d0ad059ff2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ To prevent values from being published, return ``{}``:
.. code-block:: yaml
filters:
- lambda: !lambda |-
- lambda: |-
if (x < 10) return {};
return x-10;