@@ -268,8 +268,8 @@ def replace_base_type(tp: Any, new_type: Any, replace_container_type: bool = Fal
268
268
return new_type
269
269
270
270
271
- def is_type_of (tp : str | Any , type_to_check : Any ) -> bool :
272
- """Check if the given param type is same as the specified type to check
271
+ def is_type_of (param_type : str | Any , type_to_check : Any ) -> bool :
272
+ """Check if the specified type falls into the given parameter type
273
273
274
274
eg. This will return True:
275
275
- param_type=Annotated[list[Any]]
@@ -278,29 +278,29 @@ def is_type_of(tp: str | Any, type_to_check: Any) -> bool:
278
278
:param tp: OpenAPI parameter type or python type annotation
279
279
:param type_to_check: Python type
280
280
"""
281
- if isinstance (tp , str ):
281
+ if isinstance (param_type , str ):
282
282
# OpenAPI param type
283
283
if type_to_check is list :
284
- return tp in LIST_PARAM_TYPES
284
+ return param_type in LIST_PARAM_TYPES
285
285
elif type_to_check is str :
286
- return tp in STR_PARAM_TYPES
286
+ return param_type in STR_PARAM_TYPES
287
287
elif type_to_check is bool :
288
- return tp in BOOL_PARAM_TYPES
288
+ return param_type in BOOL_PARAM_TYPES
289
289
elif type_to_check is int :
290
- return tp in LIST_PARAM_TYPES
290
+ return param_type in INT_PARAM_TYPES
291
291
elif type_to_check is None :
292
- return tp in NULL_PARAM_TYPES
292
+ return param_type in NULL_PARAM_TYPES
293
293
else :
294
294
# Add if needed
295
295
raise NotImplementedError
296
- elif origin_type := get_origin (tp ):
296
+ elif origin_type := get_origin (param_type ):
297
297
if origin_type is type_to_check :
298
298
return True
299
299
elif origin_type is Annotated :
300
- return is_type_of (tp .__origin__ , type_to_check )
301
- elif is_union_type (tp ):
302
- return any ([is_type_of (x , type_to_check ) for x in get_args (tp )])
303
- return tp is type_to_check
300
+ return is_type_of (param_type .__origin__ , type_to_check )
301
+ elif is_union_type (param_type ):
302
+ return any ([is_type_of (x , type_to_check ) for x in get_args (param_type )])
303
+ return param_type is type_to_check
304
304
305
305
306
306
def is_optional_type (tp : Any ) -> bool :
@@ -428,16 +428,18 @@ def modify_metadata(tp: Any):
428
428
def get_annotated_type (tp : Any ) -> _AnnotatedAlias | tuple [_AnnotatedAlias ] | None :
429
429
"""Get annotated type definition(s)
430
430
431
+ NOTE: If the type annotation is a union of multiple Annotated[] types, all annotated types will be returned
432
+
431
433
:param tp: Type annotation
432
434
"""
433
435
if is_union_type (tp ):
434
436
annotated_types = tuple (filter (None , [get_annotated_type (arg ) for arg in get_args (tp )]))
435
- if not annotated_types :
436
- return None
437
- elif len ( annotated_types ) == 1 :
438
- return annotated_types [ 0 ]
439
- else :
440
- return annotated_types
437
+ if annotated_types :
438
+ if len ( annotated_types ) == 1 :
439
+ return annotated_types [ 0 ]
440
+ else :
441
+ return annotated_types
442
+ return None
441
443
else :
442
444
if get_origin (tp ) is Annotated :
443
445
return tp
0 commit comments