We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a98186b + f622cec commit 5012592Copy full SHA for 5012592
cumulus_library_data_metrics/__init__.py
@@ -1,3 +1,3 @@
1
"""Data Metrics study for Cumulus Library"""
2
3
-__version__ = "7.0.1"
+__version__ = "7.0.2"
cumulus_library_data_metrics/base.py
@@ -17,8 +17,8 @@ class MetricMixin:
17
name = "base"
18
uses_fields: ClassVar[dict] = {}
19
20
- def __init__(self):
21
- super().__init__()
+ def __init__(self, *args, **kwargs):
+ super().__init__(*args, **kwargs)
22
self.display_text = f"Creating {self.name} tables…"
23
self.study_prefix = "data_metrics"
24
self.output_mode = "cube"
0 commit comments