Skip to content

Commit

Permalink
ci indenting, more generic args
Browse files Browse the repository at this point in the history
  • Loading branch information
dogversioning committed Aug 20, 2024
1 parent 31649b5 commit f1aff1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Run sqlfluff on jinja templates
run: |
sqlfluff lint
- name: Run ruff
- name: Run ruff
if: success() || failure() # still run ruff if above checks fails
run: |
ruff check
Expand Down
2 changes: 1 addition & 1 deletion cumulus_library_covid/counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def count_symptom(self, duration="week"):
return self.count_encounter(view_name, from_table, cols)

def prepare_queries(
self, config: base_utils.StudyConfig, manifest: study_manifest.StudyManifest, **kwargs
self, *args, **kwargs
):
self.queries = [
self.count_dx("month"),
Expand Down

0 comments on commit f1aff1a

Please sign in to comment.