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.
1 parent 4cbb17e commit 512bdaaCopy full SHA for 512bdaa
tests/v3/test_indexing.py
@@ -1783,7 +1783,7 @@ async def test_accessed_chunks(
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)
+ ".".join(map(str, comb)) for comb in itertools.product(*chunks_per_dim)
1787
]
1788
1789
counts_before = store.counter.copy()
0 commit comments