Skip to content

Commit 85a4ac5

Browse files
committed
rm typehint
1 parent 8eaeaf0 commit 85a4ac5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/zarr/storage/_obstore.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,7 @@ def list_dir(self, prefix: str) -> AsyncGenerator[str, None]:
232232
# docstring inherited
233233
import obstore as obs
234234

235-
coroutine: Coroutine[Any, Any, ListResult[Sequence[ObjectMeta]]] = (
236-
obs.list_with_delimiter_async(self.store, prefix=prefix)
237-
)
235+
coroutine = obs.list_with_delimiter_async(self.store, prefix=prefix)
238236
return _transform_list_dir(coroutine, prefix)
239237

240238
async def getsize(self, key: str) -> int:

0 commit comments

Comments
 (0)