Skip to content

Commit 0c2380e

Browse files
committed
fix
1 parent 22d6693 commit 0c2380e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def fillInVars(obj):
4040
for i in range(len(obj)):
4141
obj[i] = fillInVars(obj[i])
4242
elif isinstance(obj, str):
43-
matches = re.findall(r"\${(.*?)}", obj)
43+
matches = re.findall(r"\${(.*?)}", obj)
4444
for match in matches:
4545
if match in VARIABLES:
4646
value = VARIABLES[match]

0 commit comments

Comments
 (0)