(type_: Optional[Any])
| 317 | |
| 318 | |
| 319 | def is_pep593(type_: Optional[Any]) -> bool: |
| 320 | return type_ is not None and get_origin(type_) in _type_tuples.Annotated |
| 321 | |
| 322 | |
| 323 | def is_non_string_iterable(obj: Any) -> TypeGuard[Iterable[Any]]: |
no outgoing calls
no test coverage detected