Skip to content

Commit

Permalink
Merge pull request #427 from ecmwf/feature/progressbar-off-for-unique…
Browse files Browse the repository at this point in the history
…-values

Set progress_bar default to False for unique_values
  • Loading branch information
sandorkertesz authored Aug 4, 2024
2 parents 963ef9d + a26742e commit c83df35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/earthkit/data/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def order_by(self, *args, **kwargs):
"""Reorder the elements of the object."""
self._not_implemented()

def unique_values(self, *coords, remapping=None, patches=None, progress_bar=True):
def unique_values(self, *coords, remapping=None, patches=None, progress_bar=False):
"""Given a list of metadata attributes, such as date, param, levels,
returns the list of unique values for each attributes
"""
Expand Down

0 comments on commit c83df35

Please sign in to comment.