Handvask / handvask

Test for object identity should be 'is not' FLK-E714
Style
Minor
a year agoa year old
test for object identity should be 'is not'
59    time: Optional[int] = Body(default=None),
60):
61    run = Run[id]
62    optimal = not time is None63
64    solver = select(s for s in Solver if s.name == solver)[:][0]
65    if not solver: