Helper for `__eq__` and `__hash__`.
(self)
| 527 | return self._creation_time |
| 528 | |
| 529 | def _as_tuple(self): |
| 530 | """Helper for `__eq__` and `__hash__`.""" |
| 531 | return ( |
| 532 | self._data_location, |
| 533 | self._experiment_name, |
| 534 | self._experiment_description, |
| 535 | self._creation_time, |
| 536 | ) |
| 537 | |
| 538 | def __eq__(self, other): |
| 539 | if not isinstance(other, ExperimentMetadata): |