Bump mypy from 1.5.1 to 1.6.0 (#563)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
dependabot[bot] 2023-10-12 09:14:14 -10:00 committed by GitHub
parent e942152af2
commit a9d93dcdf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -9,9 +9,11 @@ from typing import TYPE_CHECKING, Any, Callable
from chacha20poly1305_reuseable import ChaCha20Poly1305Reusable
from cryptography.exceptions import InvalidTag
from noise.backends.default import DefaultNoiseBackend # type: ignore[import]
from noise.backends.default.ciphers import ChaCha20Cipher # type: ignore[import]
from noise.connection import NoiseConnection # type: ignore[import]
from noise.backends.default import DefaultNoiseBackend # type: ignore[import-untyped]
from noise.backends.default.ciphers import ( # type: ignore[import-untyped]
ChaCha20Cipher,
)
from noise.connection import NoiseConnection # type: ignore[import-untyped]
from ..core import (
APIConnectionError,

View File

@ -2,7 +2,7 @@ pylint==2.17.7
black==23.9.1
flake8==6.1.0
isort==5.12.0
mypy==1.5.1
mypy==1.6.0
types-protobuf==4.24.0.2
pytest>=6.2.4,<8
pytest-asyncio>=0.15.1,<1