Commit b1eff774 by Mathieu Kniewallner Committed by GitHub

Refresh lock file and update `mypy` + `types-*` packages (#6192)

* build(deps): bump `mypy` to `0.971`

* build(deps): bump `types-*` packages

* chore: run `poetry lock`

* chore(utils): remove obsolete `# type: ignore`
parent 65ff74a9
...@@ -84,10 +84,10 @@ httpretty = "^1.0" ...@@ -84,10 +84,10 @@ httpretty = "^1.0"
typing-extensions = { version = "^4.0.0", python = "<3.8" } typing-extensions = { version = "^4.0.0", python = "<3.8" }
zipp = { version = "^3.4", python = "<3.8" } zipp = { version = "^3.4", python = "<3.8" }
flatdict = "^4.0.1" flatdict = "^4.0.1"
mypy = ">=0.960" mypy = ">=0.971"
types-html5lib = ">=1.1.7" types-html5lib = ">=1.1.9"
types-jsonschema = ">=4.4.4" types-jsonschema = ">=4.9.0"
types-requests = ">=2.27.11" types-requests = ">=2.28.8"
[tool.poetry.scripts] [tool.poetry.scripts]
poetry = "poetry.console.application:main" poetry = "poetry.console.application:main"
......
...@@ -214,7 +214,7 @@ class Authenticator: ...@@ -214,7 +214,7 @@ class Authenticator:
verify = str(verify) if isinstance(verify, Path) else verify verify = str(verify) if isinstance(verify, Path) else verify
settings = session.merge_environment_settings( # type: ignore[no-untyped-call] settings = session.merge_environment_settings(
prepared_request.url, proxies, stream, verify, cert prepared_request.url, proxies, stream, verify, cert
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment