(self)
| 692 | |
| 693 | @property |
| 694 | def itemDataCats(self): |
| 695 | if self.__itemDataCats is None: |
| 696 | cats = set() |
| 697 | for itemSpec in self.itemSpecs: |
| 698 | if itemSpec is None: |
| 699 | continue |
| 700 | cats.add(itemSpec.item.category.name) |
| 701 | self.__itemDataCats = tuple(sorted(cats)) |
| 702 | return self.__itemDataCats |
| 703 | |
| 704 | @property |
| 705 | def isModuleRack(self): |
nothing calls this directly
no outgoing calls
no test coverage detected