mirror of
https://github.com/freqtrade/freqtrade.git
synced 2026-01-20 05:50:36 +00:00
Merge pull request #9418 from freqtrade/dependabot/pip/develop/mypy-1.7.0
Bump mypy from 1.6.1 to 1.7.0
This commit is contained in:
@@ -8,7 +8,7 @@ repos:
|
||||
# stages: [push]
|
||||
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: "v1.5.1"
|
||||
rev: "v1.7.0"
|
||||
hooks:
|
||||
- id: mypy
|
||||
exclude: build_helpers
|
||||
|
||||
@@ -1954,7 +1954,7 @@ class Exchange:
|
||||
|
||||
results = await asyncio.gather(*input_coro, return_exceptions=True)
|
||||
for res in results:
|
||||
if isinstance(res, Exception):
|
||||
if isinstance(res, BaseException):
|
||||
logger.warning(f"Async code raised an exception: {repr(res)}")
|
||||
if raise_:
|
||||
raise
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
coveralls==3.3.1
|
||||
ruff==0.1.5
|
||||
mypy==1.6.1
|
||||
mypy==1.7.0
|
||||
pre-commit==3.5.0
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
|
||||
Reference in New Issue
Block a user