@@ -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