From 6e7745eea61fdaa27aa1a374a323889969762072 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Sun, 17 Dec 2023 13:28:53 +0100 Subject: [PATCH] main: replace choices set with list --- extremeflash/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extremeflash/__main__.py b/extremeflash/__main__.py index d0ca7b5..6ca3114 100644 --- a/extremeflash/__main__.py +++ b/extremeflash/__main__.py @@ -95,7 +95,7 @@ def run(): "--model", action="store", type=str, - choices={"AP3710", "AP3715", "AP3825"}, + choices=["AP3710", "AP3715", "AP3825"], default="AP3710", help="The model of the Extreme Networks or Enterasys access point that should be flashed.", required=False,