:rtype: dict
(self)
| 477 | return ret |
| 478 | |
| 479 | def to_dict(self): |
| 480 | """ |
| 481 | :rtype: dict |
| 482 | """ |
| 483 | return { |
| 484 | 'source': self.node0.uid, |
| 485 | 'target': self.node1.uid, |
| 486 | 'directed': True, |
| 487 | } |
| 488 | |
| 489 | |
| 490 | class Group(): |
nothing calls this directly
no outgoing calls
no test coverage detected