(obj: _SequenceT | object)
| 184 | |
| 185 | |
| 186 | def is_sequence_t(obj: _SequenceT | object) -> TypeGuard[_SequenceT]: |
| 187 | return isinstance(obj, Sequence) |
| 188 | |
| 189 | |
| 190 | def is_mapping(obj: object) -> TypeGuard[Mapping[str, object]]: |
no outgoing calls
no test coverage detected