Skip to content

Commit 5012592

Browse files
authored
Merge pull request #73 from smart-on-fhir/mikix/add-kwarg
fix: don't crash on Cumulus Library 4.2
2 parents a98186b + f622cec commit 5012592

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Data Metrics study for Cumulus Library"""
22

3-
__version__ = "7.0.1"
3+
__version__ = "7.0.2"

cumulus_library_data_metrics/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ class MetricMixin:
1717
name = "base"
1818
uses_fields: ClassVar[dict] = {}
1919

20-
def __init__(self):
21-
super().__init__()
20+
def __init__(self, *args, **kwargs):
21+
super().__init__(*args, **kwargs)
2222
self.display_text = f"Creating {self.name} tables…"
2323
self.study_prefix = "data_metrics"
2424
self.output_mode = "cube"

0 commit comments

Comments
 (0)