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 22d6693 commit 0c2380eCopy full SHA for 0c2380e
app.py
@@ -40,7 +40,7 @@ def fillInVars(obj):
40
for i in range(len(obj)):
41
obj[i] = fillInVars(obj[i])
42
elif isinstance(obj, str):
43
- matches = re.findall(r"\${(.*?)}", obj)
+ matches = re.findall(r"\${(.*?)}", obj)
44
for match in matches:
45
if match in VARIABLES:
46
value = VARIABLES[match]
0 commit comments