Skip to content

Commit 73ac7ac

Browse files
committed
fix: mustache rendering
1 parent 26a8b35 commit 73ac7ac

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

mustache.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33

44

55
def prepare_and_render_mustache(template_text: str, record_dict: Dict[str, Any]) -> str:
6-
comb_dict = {
7-
"record": record_dict["data"],
8-
}
96
return chevron.render(
107
template=template_text,
11-
data=comb_dict,
8+
data=record_dict["data"],
129
)

0 commit comments

Comments
 (0)