Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Dec 1, 2021
1 parent 010d4f0 commit df5aba5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion ecmwf/opendata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

from .client import Client

__version__ = "0.0.1"
__version__ = "0.0.2"

__all__ = ["Client"]
2 changes: 0 additions & 2 deletions ecmwf/opendata/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,13 @@ def retrieve(self, request=None, target=None, **kwargs):
data_urls.append(url)
seen.add(url)

print(data_urls)
if for_index:
data_urls = self.get_parts(data_urls, for_index)

assert target is not None
download(data_urls, target=target)

def get_parts(self, data_urls, for_index):
print(for_index)

count = len(for_index)
result = []
Expand Down

0 comments on commit df5aba5

Please sign in to comment.