(fitID)
| 476 | |
| 477 | |
| 478 | def 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 | |
| 488 | def getSsoCharacters(clientHash, eager=None): |
nothing calls this directly
no outgoing calls
no test coverage detected