Commit 9b4b0efa authored by John L. Villalovos's avatar John L. Villalovos Committed by Nejc Habjan
Browse files

chore: sort CLI behavior-related args to remove

Sort the list of CLI behavior-related args that are to be removed.
parent 9c1c210c
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -399,25 +399,25 @@ def main() -> None:
    args_dict = vars(args)
    # Remove CLI behavior-related args
    for item in (
        "gitlab",
        "api_version",
        "config_file",
        "verbose",
        "debug",
        "fields",
        "gitlab",
        "gitlab_resource",
        "resource_action",
        "version",
        "job_token",
        "oauth_token",
        "output",
        "fields",
        "pagination",
        "private_token",
        "resource_action",
        "server_url",
        "skip_login",
        "ssl_verify",
        "timeout",
        "api_version",
        "pagination",
        "user_agent",
        "private_token",
        "oauth_token",
        "job_token",
        "skip_login",
        "verbose",
        "version",
    ):
        args_dict.pop(item)
    args_dict = {k: _parse_value(v) for k, v in args_dict.items() if v is not None}