Skip to content

Commit

Permalink
Merge pull request #230 from Azulinho/next_release
Browse files Browse the repository at this point in the history
Next release
  • Loading branch information
Azulinho committed Nov 6, 2023
2 parents 47326f2 + 841c90e commit 43e24fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2312,6 +2312,8 @@ def get_price_log(
try:
response: requests.Response = session.get(query, timeout=30)
status: int = response.status_code
if status == 404:
return (False, [])
if status != 200:
response.raise_for_status()
else:
Expand Down
2 changes: 1 addition & 1 deletion utils/prove-backtesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def write_optimized_strategy_config(

log_msg(f" wallet: {old_wallet}")

z: Dict[str, Any] = x | _tickers
z: Dict[str, Any] = _tickers | x
_tickers = z
log_msg(f" tickers: {_tickers}")

Expand Down

0 comments on commit 43e24fc

Please sign in to comment.