(origin: type[t.Any] | None)
| 48 | |
| 49 | |
| 50 | def origin_is_union(origin: type[t.Any] | None) -> bool: |
| 51 | return origin is t.Union or origin is types.UnionType |
| 52 | |
| 53 | |
| 54 | def origin_is_literal(origin: type[t.Any] | None) -> bool: |
no outgoing calls
no test coverage detected