(self, typeID, itemID)
| 319 | # todo: move these off to another class which extends this one. This class should only handle the low level |
| 320 | # authentication and |
| 321 | def getDynamicItem(self, typeID, itemID): |
| 322 | return self.get(None, EsiEndpoints.DYNAMIC_ITEM.value, type_id=typeID, item_id=itemID) |
| 323 | |
| 324 | def getSkills(self, char): |
| 325 | return self.get(char, EsiEndpoints.CHAR_SKILLS.value, character_id=char.characterID) |
no test coverage detected