We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pallets/jinja#882
Current precedence of pipe operator doesn't follow the original jinja2 rules. Need to be fixed. This code:
2 < 6 | bool | string
should be interpreted as:
2 < (6 | bool | string)
instead of
(2 < 6) | bool | string