Skip to content

Commit

Permalink
feat: set silent to False in CLI (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma authored Dec 29, 2023
1 parent 8902b26 commit 11b350f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/therapy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _load_source(
click.get_current_context().exit()
SourceClass = eval(name.value) # noqa: N806

source = SourceClass(database=db)
source = SourceClass(database=db, silent=False)
try:
processed_ids += source.perform_etl(use_existing)
except EtlError as e:
Expand Down
2 changes: 1 addition & 1 deletion src/therapy/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Therapy normalizer version"""
__version__ = "0.5.0-dev1"
__version__ = "0.5.0-dev2"

0 comments on commit 11b350f

Please sign in to comment.