Skip to content

Commit 1c70886

Browse files
ischneiderCopilot
andauthored
fix recursive call to download_quad in sync client
Co-authored-by: Copilot <[email protected]>
1 parent fc6ceeb commit 1c70886

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

planet/sync/mosaics.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,10 @@ def download_quad(self,
240240
```
241241
"""
242242
self._client._call_sync(
243-
self.download_quad(quad,
244-
directory=directory,
245-
overwrite=overwrite,
246-
progress_bar=progress_bar))
243+
self._client.download_quad(quad,
244+
directory=directory,
245+
overwrite=overwrite,
246+
progress_bar=progress_bar))
247247

248248
def download_quads(self,
249249
/,

0 commit comments

Comments
 (0)