Skip to content

Commit

Permalink
Merge pull request #13 from grische/fix/choices-list
Browse files Browse the repository at this point in the history
main: replace choices set with list
  • Loading branch information
grische authored Dec 17, 2023
2 parents 789daeb + 6e7745e commit 90b31c6
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 90b31c6

Please sign in to comment.