From 0e736d663c747aa57cbf651679231d694c959025 Mon Sep 17 00:00:00 2001 From: Luis Rodrigues Date: Thu, 19 Sep 2024 10:54:21 +0100 Subject: [PATCH] =?UTF-8?q?eliminar=20codigo=20desnecess=C3=A1rio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game_theory_of_life.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/game_theory_of_life.py b/game_theory_of_life.py index af96dcd..a867be4 100644 --- a/game_theory_of_life.py +++ b/game_theory_of_life.py @@ -27,11 +27,3 @@ for pos_y in range(0, mapa.dimensao[0]): # Gui.App(mapa) Gui.main(mapa) - -print(mapa) -pos_y = random.randint(0, tamanho_mundo[0]-1) -pos_x = random.randint(0, tamanho_mundo[1]-1) -obj_agente: Agente | None = mapa.posicao((pos_y, pos_x)) -if obj_agente is not None: - print(obj_agente) - print(f'{pos_y=} {pos_x=}')