(obj: object)
| 141 | |
| 142 | |
| 143 | def is_dict(obj: object) -> TypeGuard[dict[str, object]]: |
| 144 | # just pretend that we know there are only `str` keys |
| 145 | # as that check is not worth the performance cost |
| 146 | return _is_dict(obj) |
| 147 | |
| 148 | |
| 149 | def has_more_than_n_keys(obj: dict[str, object], n: int) -> bool: |
no outgoing calls
no test coverage detected