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

Function getProjectedFits

eos/db/saveddata/queries.py:478–485  ·  view source on GitHub ↗
(fitID)

Source from the content-addressed store, hash-verified

476
477
478def getProjectedFits(fitID):
479 if isinstance(fitID, int):
480 with sd_lock:
481 filter = and_(projectedFits_table.c.sourceID == fitID, Fit.ID == projectedFits_table.c.victimID)
482 fits = saveddata_session.query(Fit).filter(filter).all()
483 return fits
484 else:
485 raise TypeError("Need integer as argument")
486
487
488def getSsoCharacters(clientHash, eager=None):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected