Allows pickling.
(self)
| 162 | return self.toTuple() == other.toTuple() |
| 163 | |
| 164 | def __getstate__(self) -> Tuple[str, str, float, str]: |
| 165 | """ |
| 166 | Allows pickling. |
| 167 | """ |
| 168 | return self.toTuple() |
| 169 | |
| 170 | def __setstate__(self, data: Tuple[str, str, float, str]): |
| 171 | """ |