(value: Any)
| 105 | |
| 106 | |
| 107 | def is_dict_like(value: Any) -> TypeGuard[Mapping[Any, Any]]: |
| 108 | return hasattr(value, "keys") and hasattr(value, "__getitem__") |
| 109 | |
| 110 | |
| 111 | def drop_missing_dims( |
no outgoing calls
no test coverage detected
searching dependent graphs…