MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / Group

Class Group

gui/builtinContextMenus/envEffectAdd.py:16–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14
15
16class 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))
24 for group in self.groups.values():
25 group.sort()
26 self.items.sort(key=lambda e: e.shortName)
27
28
29class Entry:

Callers 5

getDataMethod · 0.70
getEffectBeaconsMethod · 0.70
getAbyssalWeatherMethod · 0.70
getInvasionBeaconsMethod · 0.70
getIHubEffectsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected