Skip to content

Commit 43e24fc

Browse files
authored
Merge pull request #230 from Azulinho/next_release
Next release
2 parents 47326f2 + 841c90e commit 43e24fc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/bot.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2312,6 +2312,8 @@ def get_price_log(
23122312
try:
23132313
response: requests.Response = session.get(query, timeout=30)
23142314
status: int = response.status_code
2315+
if status == 404:
2316+
return (False, [])
23152317
if status != 200:
23162318
response.raise_for_status()
23172319
else:

utils/prove-backtesting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def write_optimized_strategy_config(
331331

332332
log_msg(f" wallet: {old_wallet}")
333333

334-
z: Dict[str, Any] = x | _tickers
334+
z: Dict[str, Any] = _tickers | x
335335
_tickers = z
336336
log_msg(f" tickers: {_tickers}")
337337

0 commit comments

Comments
 (0)