(self)
| 508 | self.uid = "cluster_" + os.urandom(4).hex() # group doesn't work by syntax rules |
| 509 | |
| 510 | def __repr__(self): |
| 511 | return f"<Group token={self.token} type={self.display_type}>" |
| 512 | |
| 513 | def __lt__(self, other): |
| 514 | return self.label() < other.label() |
nothing calls this directly
no outgoing calls
no test coverage detected