From 0980270dcf67ee486c26d8349855a6f99cf6861a Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Tue, 4 Aug 2020 23:41:08 +0200 Subject: [PATCH] RectangularWall: Fix list of available edge types M -> N --- boxes/generators/rectangularWall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/boxes/generators/rectangularWall.py b/boxes/generators/rectangularWall.py index d76c444..6175649 100644 --- a/boxes/generators/rectangularWall.py +++ b/boxes/generators/rectangularWall.py @@ -39,19 +39,19 @@ class RectangularWall(Boxes): self.argparser.add_argument( "--bottom_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), default="e", help="edge type for bottom edge") self.argparser.add_argument( "--right_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), default="e", help="edge type for right edge") self.argparser.add_argument( "--top_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), default="e", help="edge type for top edge") self.argparser.add_argument( "--left_edge", action="store", - type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnMoOpPqQRsSuUvV"), + type=ArgparseEdgeType("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), choices=list("cCdDeEfFghiIjJkKlLmMnNoOpPqQRsSuUvV"), default="e", help="edge type for left edge")