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.
1 parent b16d053 commit 7cb0f15Copy full SHA for 7cb0f15
himl/interpolation.py
@@ -15,7 +15,8 @@
15
16
17
def is_interpolation(value):
18
- return isinstance(value, string_types) and '{{' in value and '}}' in value
+ return isinstance(value, string_types) and '{{' in value and '}}' in value \
19
+ and '{{`' not in value and '`}}' not in value
20
21
22
def is_full_interpolation(value):
0 commit comments