Skip to content

Commit

Permalink
fixed --lastaction
Browse files Browse the repository at this point in the history
  • Loading branch information
whittlem committed May 13, 2021
1 parent 3b43906 commit 60a1258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Docker](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg) [![Tests](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)

# Python Crypto Bot v2.0.8 (pycryptobot)
# Python Crypto Bot v2.1.0 (pycryptobot)

## Join our chat on Telegram

Expand Down
2 changes: 1 addition & 1 deletion models/config/default_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def merge_config_and_args(exchange_config, args):
if 'config' in exchange_config and exchange_config['config'] is not None:
new_config = {**exchange_config['config']}
for (key, value) in args.items():
if value is not None and value is True:
if value is not None and value is not False:
new_config[key] = value
return new_config

Expand Down

0 comments on commit 60a1258

Please sign in to comment.