(self)
| 868 | return root |
| 869 | |
| 870 | def getShipRoot(self): |
| 871 | cat1 = self.getCategory("Ship") |
| 872 | cat2 = self.getCategory("Structure") |
| 873 | root = set(self.getGroupsByCategory(cat1) | self.getGroupsByCategory(cat2)) |
| 874 | |
| 875 | return root |
| 876 | |
| 877 | def getShipList(self, grpid): |
| 878 | """Get ships for given group id""" |
no test coverage detected