Skip to content

Commit

Permalink
fix typo in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
theOGognf committed Jan 18, 2024
1 parent 6aaef4d commit 19b5c75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/finagg/fred/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def install(
else:
logger.warning(
f"No rows were inserted for {__package__}. This could be an error if"
" installations were not skipped. Set the verbose flag with the"
" installations were skipped. Set the verbose flag with the"
" `--verbose/-v` option to enable debug logging."
)
else:
Expand Down
2 changes: 1 addition & 1 deletion src/finagg/fundam/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def install(
else:
logger.warning(
f"No rows were inserted for {__package__}. This could be an error if"
" installations were not skipped. Set the verbose flag with the"
" installations were skipped. Set the verbose flag with the"
" `--verbose/-v` option to enable debug logging."
)
else:
Expand Down
2 changes: 1 addition & 1 deletion src/finagg/sec/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def install(
else:
logger.warning(
f"No rows were inserted for {__package__}. This could be an error if"
" installations were not skipped. Set the verbose flag with the"
" installations were skipped. Set the verbose flag with the"
" `--verbose/-v` option to enable debug logging."
)
else:
Expand Down
6 changes: 2 additions & 4 deletions src/finagg/yfinance/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def install(
else:
logger.warning(
f"No rows were inserted for {__package__}. This could be an error if"
" installations were not skipped. Set the verbose flag with the"
" installations were skipped. Set the verbose flag with the"
" `--verbose/-v` option to enable debug logging."
)
else:
Expand Down Expand Up @@ -224,9 +224,7 @@ def install(
"`AAPL,MSFT,NVDA`), or by providing tickers in a CSV file by "
"specifying a file path (e.g., `bank_tickers.txt`). The CSV file "
"can be formatted such that there's one ticker per line or multiple "
"tickers per line (delimited by a comma). The tickers specified "
"by this option are combined with the tickers specified by the "
"`ticker-set` option."
"tickers per line (delimited by a comma)."
),
)
@click.option(
Expand Down

0 comments on commit 19b5c75

Please sign in to comment.