Skip to content

Commit c094e67

Browse files
chore(deps): bump pydantic from 2.11.10 to 2.12.0 (#7491)
* chore(deps): bump pydantic from 2.11.10 to 2.12.0 Bumps [pydantic](https://github.com/pydantic/pydantic) from 2.11.10 to 2.12.0. - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](pydantic/pydantic@v2.11.10...v2.12.0) --- updated-dependencies: - dependency-name: pydantic dependency-version: 2.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Make mypy happy --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Leandro Damascena <lcdama@amazon.pt>
1 parent 333c229 commit c094e67

File tree

2 files changed

+131
-117
lines changed

2 files changed

+131
-117
lines changed

aws_lambda_powertools/event_handler/openapi/params.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __init__(
8585
self.cache_key: CacheKey = self.call
8686

8787

88-
class Param(FieldInfo):
88+
class Param(FieldInfo): # type: ignore[misc]
8989
"""
9090
A class used internally to represent a parameter in a path operation.
9191
"""
@@ -236,7 +236,7 @@ def __repr__(self) -> str:
236236
return f"{self.__class__.__name__}({self.default})"
237237

238238

239-
class Path(Param):
239+
class Path(Param): # type: ignore[misc]
240240
"""
241241
A class used internally to represent a path parameter in a path operation.
242242
"""
@@ -370,7 +370,7 @@ def __init__(
370370
)
371371

372372

373-
class Query(Param):
373+
class Query(Param): # type: ignore[misc]
374374
"""
375375
A class used internally to represent a query parameter in a path operation.
376376
"""
@@ -499,7 +499,7 @@ def __init__(
499499
)
500500

501501

502-
class Header(Param):
502+
class Header(Param): # type: ignore[misc]
503503
"""
504504
A class used internally to represent a header parameter in a path operation.
505505
"""
@@ -649,7 +649,7 @@ def alias(self, value: str | None = None):
649649
self._alias = value.lower()
650650

651651

652-
class Body(FieldInfo):
652+
class Body(FieldInfo): # type: ignore[misc]
653653
"""
654654
A class used internally to represent a body parameter in a path operation.
655655
"""
@@ -737,7 +737,7 @@ def __repr__(self) -> str:
737737
return f"{self.__class__.__name__}({self.default})"
738738

739739

740-
class Form(Body):
740+
class Form(Body): # type: ignore[misc]
741741
"""
742742
A class used to represent a form parameter in a path operation.
743743
"""
@@ -809,7 +809,7 @@ def __init__(
809809
)
810810

811811

812-
class _File(Form):
812+
class _File(Form): # type: ignore[misc]
813813
"""
814814
A class used to represent a file parameter in a path operation.
815815
"""

0 commit comments

Comments
 (0)