You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I found that if a string has a boolean value, then it is interpreted as the boolean value it contains.
For example
PARAM = "false"
JINJA_EXPR = {{ PARAM ? PARAM : "" }}
After rendering JINJA_EXPR, the output is "" but I expect it to be "false" meaning the param is present and can be used.
Could you please explain how to remove this behavior? Or if the latter is not possible could you please tell me how to resolve the case I described?
The text was updated successfully, but these errors were encountered:
Hello. I found that if a string has a boolean value, then it is interpreted as the boolean value it contains.
For example
PARAM = "false"
JINJA_EXPR = {{ PARAM ? PARAM : "" }}
After rendering JINJA_EXPR, the output is "" but I expect it to be "false" meaning the param is present and can be used.
Could you please explain how to remove this behavior? Or if the latter is not possible could you please tell me how to resolve the case I described?
The text was updated successfully, but these errors were encountered: