From a26742e98ab5d0cf86f613908774cab8fc389026 Mon Sep 17 00:00:00 2001 From: Sandor Kertesz Date: Sun, 4 Aug 2024 09:33:14 +0100 Subject: [PATCH] Set progress_bar default to False for unique_values --- src/earthkit/data/core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/earthkit/data/core/__init__.py b/src/earthkit/data/core/__init__.py index f0c3f0f8..8aa28450 100644 --- a/src/earthkit/data/core/__init__.py +++ b/src/earthkit/data/core/__init__.py @@ -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 """