We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
map(str, *)
test_accessed_chunks
1 parent 1574e8b commit 3ce7670Copy full SHA for 3ce7670
tests/v3/test_indexing.py
@@ -1782,9 +1782,7 @@ async def test_accessed_chunks(
1782
1783
# Combine and generate the cartesian product to determine the chunks keys that
1784
# will be accessed
1785
- chunks_accessed = [
1786
- ".".join([str(ci) for ci in comb]) for comb in itertools.product(*chunks_per_dim)
1787
- ]
+ chunks_accessed = [".".join(map(str, comb)) for comb in itertools.product(*chunks_per_dim)]
1788
1789
counts_before = store.counter.copy()
1790
0 commit comments