nonexistent user deletion

This commit is contained in:
Jörn-Michael Miehe 2022-03-23 13:42:43 +00:00
parent 70df7a47db
commit fba1bf6514

View file

@ -131,7 +131,7 @@ async def remove_user(
) )
# fail if deletion was unsuccessful # fail if deletion was unsuccessful
if not user.delete(db): if user is None or not user.delete(db):
raise HTTPException(status_code=status.HTTP_409_CONFLICT) raise HTTPException(status_code=status.HTTP_409_CONFLICT)