We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e85f32 commit 6e12fabCopy full SHA for 6e12fab
src/brand/dev/_qs.py
@@ -101,7 +101,10 @@ def _stringify_item(
101
items.extend(self._stringify_item(key, item, opts))
102
return items
103
elif array_format == "indices":
104
- raise NotImplementedError("The array indices format is not supported yet")
+ items = []
105
+ for i, item in enumerate(value):
106
+ items.extend(self._stringify_item(f"{key}[{i}]", item, opts))
107
+ return items
108
elif array_format == "brackets":
109
items = []
110
key = key + "[]"
0 commit comments