MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / postFitting

Method postFitting

service/esiAccess.py:333–335  ·  view source on GitHub ↗
(self, char, json_str)

Source from the content-addressed store, hash-verified

331 return self.get(char, EsiEndpoints.CHAR_FITTINGS.value, character_id=char.characterID)
332
333 def postFitting(self, char, json_str):
334 # @todo: new fitting ID can be recovered from resp.data,
335 return self.post(char, EsiEndpoints.CHAR_FITTINGS.value, json_str, character_id=char.characterID)
336
337 def delFitting(self, char, fittingID):
338 return self.delete(char, EsiEndpoints.CHAR_DEL_FIT.value, character_id=char.characterID, fitting_id=fittingID)

Callers

nothing calls this directly

Calls 1

postMethod · 0.95

Tested by

no test coverage detected