def get(self, id): """Get run by id""" run = self.backend_store.get_run(id) if not run: return abort(404, message="Run {} doesn't exist".format(id)) return run_model.format_response(run)