Materialize full dict representation
(self)
| 157 | |
| 158 | @property |
| 159 | def _dict(self): |
| 160 | """Materialize full dict representation""" |
| 161 | if hasattr(self, "_cached_dict"): |
| 162 | return self._cached_dict |
| 163 | else: |
| 164 | dsk = self._construct_graph() |
| 165 | self._cached_dict = dsk |
| 166 | return self._cached_dict |
| 167 | |
| 168 | def __getitem__(self, key): |
| 169 | return self._dict[key] |
nothing calls this directly
no test coverage detected