Return a unique string representing this object.
(self)
| 24 | pass |
| 25 | |
| 26 | def object_id(self) -> str: |
| 27 | """Return a unique string representing this object.""" |
| 28 | return "Undefined. for <%s %s>" % (self.__class__.__name__, id(self)) |
| 29 | |
| 30 | def __str__(self) -> str: |
| 31 | return self.object_id() |