Skip to content

Commit

Permalink
Fix default config argument, bump click (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout authored May 25, 2021
1 parent ac58660 commit 8c63fe2
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 61 deletions.
119 changes: 61 additions & 58 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tortoise-orm = "^0.17.1"
pydantic = "^1.8.1"
aiosignalrcore = "^0.9.2"
fcache = "^0.4.7"
click = "7.1.2"
click = "^8.0.1"

[tool.poetry.dev-dependencies]
black = "^20.8b1"
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tzbtc/handlers/on_balance_update.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from decimal import Decimal
from datetime import datetime
from decimal import Decimal

import demo_tzbtc.models as models

Expand Down
2 changes: 1 addition & 1 deletion src/dipdup/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CLIContext:

@click.group()
@click.version_option(__version__)
@click.option('--config', '-c', type=str, multiple=True, help='Path to dipdup YAML config', default='dipdup.yml')
@click.option('--config', '-c', type=str, multiple=True, help='Path to dipdup YAML config', default=['dipdup.yml'])
@click.option('--logging-config', '-l', type=str, help='Path to logging YAML config', default='logging.yml')
@click.pass_context
@click_async
Expand Down

0 comments on commit 8c63fe2

Please sign in to comment.