#!/usr/bin/env python3 import argparse from common import add_common_arguments, ask, client_from_args, run parser = argparse.ArgumentParser(description="Gelöschte Route wiederherstellen") add_common_arguments(parser) parser.add_argument("--route-id", type=int) args = parser.parse_args() def action(): client = client_from_args(args) route_id = ask("Route-ID", args.route_id, required=True, cast=int) return client.request("POST", f"/api/routes/{route_id}/restore", json_body={}) run(action)