Skip to content

Commit

Permalink
Merge pull request #73 from smart-on-fhir/mikix/add-kwarg
Browse files Browse the repository at this point in the history
fix: don't crash on Cumulus Library 4.2
  • Loading branch information
mikix authored Jan 27, 2025
2 parents a98186b + f622cec commit 5012592
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cumulus_library_data_metrics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Data Metrics study for Cumulus Library"""

__version__ = "7.0.1"
__version__ = "7.0.2"
4 changes: 2 additions & 2 deletions cumulus_library_data_metrics/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class MetricMixin:
name = "base"
uses_fields: ClassVar[dict] = {}

def __init__(self):
super().__init__()
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.display_text = f"Creating {self.name} tables…"
self.study_prefix = "data_metrics"
self.output_mode = "cube"
Expand Down

0 comments on commit 5012592

Please sign in to comment.