From 7f0031d3a92db0eb79c42411556bf7b86a8eae75 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 14 Apr 2016 21:07:01 -0400 Subject: [PATCH] print called numbers on boards with "-" instead of "*" --- bingo/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bingo/__init__.py b/bingo/__init__.py index 2ec7c9b..71e41c3 100644 --- a/bingo/__init__.py +++ b/bingo/__init__.py @@ -20,7 +20,7 @@ class Board: caption = self.cols[col][row] if caption == 0: caption = "F" - called = "*" if self.called[col][row] else " " + called = "-" if self.called[col][row] else " " print("|%s%2s%s" % (called, caption, called), end = "") print("|") print(self.border)