Skip to content

Commit

Permalink
Corrected docstrong
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWilkie committed Jun 28, 2024
1 parent 2c623d0 commit 39090fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions darwin/dataset/remote_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def pull(
)
time.sleep(retry_interval)
retry_duration -= retry_interval
release = self.get_release(release.name)
release = self.get_release(release.name, retry=retry)
if release.status == "pending":
raise ValueError(
f"Release {release.name} for dataset '{self.name}' is still processing after {retry_interval} seconds. Please try again later."
Expand Down Expand Up @@ -772,7 +772,7 @@ def get_release(self, name: str = "latest", retry: bool = True) -> "Release":
----------
name : str, default: "latest"
Name of the export.
retry : bool, default: False
retry : bool, default: True
If True, return all releases, including those that are not available.
Returns
Expand Down

0 comments on commit 39090fa

Please sign in to comment.