Skip to content

Commit

Permalink
move values under "values" key
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k committed Jun 5, 2024
1 parent 5ad948a commit 5076f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog_templating/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def render_templates(app_version_path: str, test_values: dict) -> dict:
# env.filters['make_capital'] = lambda st: st.upper()
rendered_templates[to_render_file.name] = env.get_template(
to_render_file.name
).render(test_values | {'ix_lib': template_libs})
).render({'ix_lib': template_libs, 'values': test_values})

return rendered_templates

Expand Down

0 comments on commit 5076f82

Please sign in to comment.