Cast int to string to fix printing int.
This commit is contained in:
parent
a9ef0dc2d1
commit
56f45c5b15
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class StateSingleton:
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
self.update_step()
|
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()
|
self.draw_face()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue