This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% macro test_macro() %} | |
| {% set contains_1 = [] %} | |
| {% set contains_2 = [] %} | |
| {% set my_dict = [{'a': [1]}, {'b': [1, 2]}, {'c': [2]}] %} | |
| {% for item in my_dict %} | |
| {{ log(item, info=True) }} | |