(obj: _SequenceT | object)
| 154 | |
| 155 | |
| 156 | def is_sequence_t(obj: _SequenceT | object) -> TypeGuard[_SequenceT]: |
| 157 | return isinstance(obj, Sequence) |
| 158 | |
| 159 | |
| 160 | def is_mapping(obj: object) -> TypeGuard[Mapping[str, object]]: |
no outgoing calls
no test coverage detected