Skip to content

Commit

Permalink
Merge pull request #126 from illuin-tech/dependabot/pip/mypy-1.11.2
Browse files Browse the repository at this point in the history
Bump mypy from 1.10.1 to 1.11.2
  • Loading branch information
Aegdesil authored Aug 29, 2024
2 parents c6b08a3 + 94c40a6 commit ee9c95e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions opyoid/bindings/self_binding/callable_to_provider_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def create(
if cached_provider:
return cached_provider
if isinstance(type_or_function, type):
parameters = list(signature(type_or_function.__init__).parameters.values())[1:]
parameters = list(signature(type_or_function.__init__).parameters.values())[1:] # type: ignore[misc]
else:
parameters = signature(type_or_function).parameters.values()
parameters = list(signature(type_or_function).parameters.values())
positional_providers: List[Provider[Any]] = []
args_provider: Optional[Provider[List[Any]]] = None
keyword_providers: Dict[str, Provider[Any]] = {}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
dev = [
"black==24.4.2",
"build==1.2.1",
"mypy==1.10.1",
"mypy==1.11.2",
"pytest==8.2.2",
"pytest-cov==5.0.0",
"pylint==3.2.6",
Expand Down

0 comments on commit ee9c95e

Please sign in to comment.