From c6269aed9d4f36d8520b625c5c32273910f37a89 Mon Sep 17 00:00:00 2001 From: Bradley Small <vc.Bradley.Small@lowes.com> Date: Wed, 20 Nov 2019 13:17:07 -0500 Subject: [PATCH] correcting __repr__ --- main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.py b/main.py index 5a269d6..5e6f85f 100644 --- a/main.py +++ b/main.py @@ -22,9 +22,6 @@ class Cell: def __repr__(self): """Representation.""" return "Cell()" - if self.is_on(): - return "\N{Full Block}" - return " " def is_on(self): """Test current state.""" -- GitLab