Skip to content

Commit

Permalink
Update for Library 2.0 (#22)
Browse files Browse the repository at this point in the history
* Add a smoke-test basic test suite

* Update for cumulus_library 2.0
  • Loading branch information
mikix authored Apr 23, 2024
1 parent be0f8c2 commit 025bdae
Show file tree
Hide file tree
Showing 25 changed files with 2,060 additions and 512 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ data_export/
.python-version
.DS_Store
cumulus_library_columns.json
/.idea/

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
4 changes: 2 additions & 2 deletions cumulus_library_hypertension/htn/counts.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pathlib import Path
from cumulus_library.schema.counts import CountsBuilder
from cumulus_library.statistics.counts import CountsBuilder

class HtnCountsBuilder(CountsBuilder):
display_text = "Creating htn counts..."
Expand Down Expand Up @@ -137,7 +137,7 @@ def count_procedure(self, duration=None):

return self.count_encounter(view_name, from_table, cols)

def prepare_queries(self, cursor=None, schema=None):
def prepare_queries(self, *args, **kwargs):
self.queries =[
self.count_study_period(),
self.count_study_period('month'),
Expand Down
Loading

0 comments on commit 025bdae

Please sign in to comment.