def get(petId):
    id_ = int(petId)
    if pets.get(id_) is None:
        return NoContent, 404
    return pets[id_]