@@ -85,7 +85,7 @@ def __init__(
85
85
self .cache_key : CacheKey = self .call
86
86
87
87
88
- class Param (FieldInfo ):
88
+ class Param (FieldInfo ): # type: ignore[misc]
89
89
"""
90
90
A class used internally to represent a parameter in a path operation.
91
91
"""
@@ -236,7 +236,7 @@ def __repr__(self) -> str:
236
236
return f"{ self .__class__ .__name__ } ({ self .default } )"
237
237
238
238
239
- class Path (Param ):
239
+ class Path (Param ): # type: ignore[misc]
240
240
"""
241
241
A class used internally to represent a path parameter in a path operation.
242
242
"""
@@ -370,7 +370,7 @@ def __init__(
370
370
)
371
371
372
372
373
- class Query (Param ):
373
+ class Query (Param ): # type: ignore[misc]
374
374
"""
375
375
A class used internally to represent a query parameter in a path operation.
376
376
"""
@@ -499,7 +499,7 @@ def __init__(
499
499
)
500
500
501
501
502
- class Header (Param ):
502
+ class Header (Param ): # type: ignore[misc]
503
503
"""
504
504
A class used internally to represent a header parameter in a path operation.
505
505
"""
@@ -649,7 +649,7 @@ def alias(self, value: str | None = None):
649
649
self ._alias = value .lower ()
650
650
651
651
652
- class Body (FieldInfo ):
652
+ class Body (FieldInfo ): # type: ignore[misc]
653
653
"""
654
654
A class used internally to represent a body parameter in a path operation.
655
655
"""
@@ -737,7 +737,7 @@ def __repr__(self) -> str:
737
737
return f"{ self .__class__ .__name__ } ({ self .default } )"
738
738
739
739
740
- class Form (Body ):
740
+ class Form (Body ): # type: ignore[misc]
741
741
"""
742
742
A class used to represent a form parameter in a path operation.
743
743
"""
@@ -809,7 +809,7 @@ def __init__(
809
809
)
810
810
811
811
812
- class _File (Form ):
812
+ class _File (Form ): # type: ignore[misc]
813
813
"""
814
814
A class used to represent a file parameter in a path operation.
815
815
"""
0 commit comments