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 cdbddd4 commit 5f13053Copy full SHA for 5f13053
backend/btrixcloud/storages.py
@@ -836,7 +836,7 @@ def _sync_dl(
836
) -> Iterator[bytes]:
837
"""generate streaming zip as sync"""
838
839
- def get_file(path: str) -> Iterable[bytes]:
+ def get_file(path: str) -> Iterator[bytes]:
840
path = self.resolve_internal_access_path(path)
841
r = requests.get(path, stream=True, timeout=None)
842
yield from r.iter_content(CHUNK_SIZE)
0 commit comments