From 1825ba4cff69917e465a4af8e47f5b0bd90984f5 Mon Sep 17 00:00:00 2001 From: Robert Greathouse Date: Wed, 11 Sep 2024 19:01:57 -0600 Subject: [PATCH] Fix to the bit get color call --- byubit/bit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byubit/bit.py b/byubit/bit.py index 8caaf2b..eb0f475 100644 --- a/byubit/bit.py +++ b/byubit/bit.py @@ -532,7 +532,7 @@ def paint(self, color): @check_for_parentheses @check_extraneous_args @registered - def get_color(self) -> str: + def _get_color(self) -> str: """Return the color at the current position""" return _colors_to_names[self._get_color_at(self.pos)]