(self)
| 123 | return not self.dim_is_dynamic(key) |
| 124 | |
| 125 | def has_dynamic(self): |
| 126 | return any([self.dim_is_dynamic(i) for i in range(self.ndim)]) |
| 127 | |
| 128 | def get_static_dims_with_keys(self): |
| 129 | return [ |
nothing calls this directly
no test coverage detected