Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions aws_lambda_powertools/event_handler/openapi/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(
self.cache_key: CacheKey = self.call


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


class Path(Param):
class Path(Param): # type: ignore[misc]
"""
A class used internally to represent a path parameter in a path operation.
"""
Expand Down Expand Up @@ -370,7 +370,7 @@ def __init__(
)


class Query(Param):
class Query(Param): # type: ignore[misc]
"""
A class used internally to represent a query parameter in a path operation.
"""
Expand Down Expand Up @@ -499,7 +499,7 @@ def __init__(
)


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


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


class Form(Body):
class Form(Body): # type: ignore[misc]
"""
A class used to represent a form parameter in a path operation.
"""
Expand Down Expand Up @@ -809,7 +809,7 @@ def __init__(
)


class _File(Form):
class _File(Form): # type: ignore[misc]
"""
A class used to represent a file parameter in a path operation.
"""
Expand Down
Loading