(type_: _AnnotationScanType)
| 335 | |
| 336 | |
| 337 | def is_generic(type_: _AnnotationScanType) -> TypeGuard[GenericProtocol[Any]]: |
| 338 | return hasattr(type_, "__args__") and hasattr(type_, "__origin__") |
| 339 | |
| 340 | |
| 341 | def is_pep695(type_: _AnnotationScanType) -> TypeGuard[TypeAliasType]: |
no outgoing calls
no test coverage detected