From 1b8facba15b0d59ff10d0d447789b418b64f210f Mon Sep 17 00:00:00 2001 From: Mathilde Leuridan Date: Wed, 22 Nov 2023 10:56:53 +0100 Subject: [PATCH] remove double print for convex polytope --- polytope/shapes.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/polytope/shapes.py b/polytope/shapes.py index d79ccd7af..cc77273a7 100644 --- a/polytope/shapes.py +++ b/polytope/shapes.py @@ -38,9 +38,6 @@ def extents(self, axis): def __str__(self): return f"Polytope in {self.axes} with points {self.points}" - def __repr__(self): - return f"Polytope in {self.axes} with points {self.points}" - def axes(self): return self._axes