From 94c61b6d79b6fa05c2426a867b284cd774f664de 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 5a824533a..306d1a64a 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