File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
docs/python-sdk/reference Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,15 @@ The following Jinja2 filters from <a href="https://netutils.readthedocs.io">Netu
2525| {{ filter.name }} | {% if filter .trusted %} ✅{% else %} ❌{% endif %} |
2626{% endfor %}
2727<!-- vale on -->
28+
29+ ## Known issues
30+
31+ ### Unable to combine the map and sort filters (https://github.com/pallets/jinja/issues/2081)
32+
33+ When using the `map` filter with the `sort` filter, you may encounter the following error:
34+
35+ ```python
36+ TypeError: 'async_generator' object is not iterable
37+ ```
38+
39+ **As a workaround you can use the `list` filter between `map` and `sort` filter.**
Original file line number Diff line number Diff line change @@ -150,4 +150,16 @@ The following Jinja2 filters from <a href="https://netutils.readthedocs.io">Netu
150150| vlanconfig_to_list | ✅ |
151151| vlanlist_to_config | ✅ |
152152| wildcardmask_to_netmask | ✅ |
153- <!-- vale on -->
153+ <!-- vale on -->
154+
155+ ## Known issues
156+
157+ ### Unable to combine the map and sort filters (https://github.com/pallets/jinja/issues/2081)
158+
159+ When using the `map` filter with the `sort` filter, you may encounter the following error:
160+
161+ ```python
162+ TypeError: ' async_generator' object is not iterable
163+ ```
164+
165+ **As a workaround you can use the `list` filter between `map` and `sort` filter.**
You can’t perform that action at this time.
0 commit comments