RectangularWall: Fix list of available edge types

M -> N
This commit is contained in:
Florian Festi 2020-08-04 23:41:08 +02:00
parent d3fa5ec0d4
commit 0980270dcf
1 changed files with 4 additions and 4 deletions

View File

@ -39,19 +39,19 @@ class RectangularWall(Boxes):
self.argparser.add_argument( self.argparser.add_argument(
"--bottom_edge", action="store", "--bottom_edge", action="store",
type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"),
default="e", help="edge type for bottom edge") default="e", help="edge type for bottom edge")
self.argparser.add_argument( self.argparser.add_argument(
"--right_edge", action="store", "--right_edge", action="store",
type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"),
default="e", help="edge type for right edge") default="e", help="edge type for right edge")
self.argparser.add_argument( self.argparser.add_argument(
"--top_edge", action="store", "--top_edge", action="store",
type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"),
default="e", help="edge type for top edge") default="e", help="edge type for top edge")
self.argparser.add_argument( self.argparser.add_argument(
"--left_edge", action="store", "--left_edge", action="store",
type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"),
default="e", help="edge type for left edge") default="e", help="edge type for left edge")