Skip to content

Commit

Permalink
main: replace choices set with list
Browse files Browse the repository at this point in the history
  • Loading branch information
grische committed Dec 17, 2023
1 parent 789daeb commit 6e7745e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extremeflash/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6e7745e

Please sign in to comment.