blob: a821e23b5b8dcc2b6022321b371608cd9c7912c4 [file] [log] [blame]
{%- macro cast_dict_keys(output, input) %}
{%- for key, value in input.items() %}
{%- set int_key = key | int %}
{%- do output.update({int_key: value}) %}
{%- endfor %}
{%- endmacro %}