(self)
| 16 | class Group: |
| 17 | |
| 18 | def __init__(self): |
| 19 | self.groups = OrderedDict() |
| 20 | self.items = [] |
| 21 | |
| 22 | def sort(self): |
| 23 | self.groups = OrderedDict((k, self.groups[k]) for k in sorted(self.groups)) |
nothing calls this directly
no outgoing calls
no test coverage detected