return the metadata pathname for this key
(self, key: str)
| 3724 | return [i.cname for i in self.values_axes] |
| 3725 | |
| 3726 | def _get_metadata_path(self, key: str) -> str: |
| 3727 | """return the metadata pathname for this key""" |
| 3728 | group = self.group._v_pathname |
| 3729 | return f"{group}/meta/{key}/meta" |
| 3730 | |
| 3731 | def write_metadata(self, key: str, values: np.ndarray) -> None: |
| 3732 | """ |
no outgoing calls
no test coverage detected