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):
|
||||
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()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue