Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
dogversioning committed Aug 31, 2023
1 parent 4e18d25 commit 027e0bf
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions cumulus_library_covid/covid_symptom/counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ def count_dx(self, duration="week"):
"ed_note",
"variant_era",
]
return self.count_encounter(view_name, from_table, cols, where_clauses = self.get_where_clauses())
return self.count_encounter(
view_name, from_table, cols, where_clauses=self.get_where_clauses()
)

def count_pcr(self, duration="week"):
"""
Expand All @@ -37,7 +39,9 @@ def count_pcr(self, duration="week"):
"gender",
"race_display",
]
return self.count_encounter(view_name, from_table, cols, where_clauses = self.get_where_clauses())
return self.count_encounter(
view_name, from_table, cols, where_clauses=self.get_where_clauses()
)

def count_study_period(self, duration="month"):
"""
Expand All @@ -55,7 +59,9 @@ def count_study_period(self, duration="month"):
"age_group",
"race_display",
]
return self.count_encounter(view_name, from_table, cols, where_clauses = self.get_where_clauses())
return self.count_encounter(
view_name, from_table, cols, where_clauses=self.get_where_clauses()
)

def count_prevalence_ed(self, duration="month"):
view_name = self.get_table_name("count_prevalence_ed", duration)
Expand Down

0 comments on commit 027e0bf

Please sign in to comment.