From ea35230a5cede98e2fbc3f9d3345999ec8b864b7 Mon Sep 17 00:00:00 2001 From: Adam Janovsky Date: Thu, 13 Feb 2025 11:05:27 +0100 Subject: fix dataset download description class name --- src/sec_certs/dataset/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/sec_certs/dataset/dataset.py b/src/sec_certs/dataset/dataset.py index 7a9c92ed..be070580 100644 --- a/src/sec_certs/dataset/dataset.py +++ b/src/sec_certs/dataset/dataset.py @@ -169,7 +169,7 @@ class Dataset(Generic[CertSubType], ComplexSerializableType, ABC): if not snapshot_url: snapshot_url = cls.SNAPSHOT_URL if not progress_bar_desc: - progress_bar_desc = f"Downloading: {type(cls).__name__}" + progress_bar_desc = f"Downloading: {cls.__name__}" if (artifacts or auxiliary_datasets) and path is None: raise ValueError("Path needs to be defined if artifacts or auxiliary datasets are to be downloaded.") -- cgit v1.3.1