From 56f45c5b15b3ed356bd7b0214fe1377426d56fe1 Mon Sep 17 00:00:00 2001 From: CiscoTheWolf Date: Mon, 5 Jun 2023 22:06:35 +0200 Subject: [PATCH] Cast int to string to fix printing int. --- rpi/State.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi/State.py b/rpi/State.py index 28245b6..26f9cef 100644 --- a/rpi/State.py +++ b/rpi/State.py @@ -82,7 +82,7 @@ class StateSingleton: def update(self): self.update_step() - print("at step: " + self.transition_count + " from default in expression: " + self.desired_expression) + print("at step: " + str(self.transition_count) + " from default in expression: " + str(self.desired_expression)) self.draw_face()