From 2ee0911312ae403aa48f0165ffd563b005c0d0e8 Mon Sep 17 00:00:00 2001 From: EtherealEntity Date: Wed, 23 Mar 2022 11:40:59 +1100 Subject: [PATCH] whoops cast int to str --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index dc53496..23a116d 100644 --- a/main.py +++ b/main.py @@ -106,7 +106,7 @@ def tick(t): grid[cp[0]][cp[1]].occupant = None #they move out of there grid[man.curr[0]][man.curr[1]].occupant = i if done: - print("Final Tick: " + t); + print("Final Tick: " + str(t)); exit() def run():