From 4aa0e7280dc0fc3578ddd6a558cca304b311b9fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magdalena=20Wilczy=C5=84ska?= Date: Mon, 25 Mar 2019 14:15:59 +0100 Subject: [PATCH] Removed print --- utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils.py b/utils.py index 2cdb777..26c3128 100644 --- a/utils.py +++ b/utils.py @@ -41,7 +41,6 @@ def generate_houses(all_sprites, obstacles_coords): x, y = generate_rand_coordinates( (PLAY_WIDTH//CELL_SIZE)-1, (PLAY_HEIGHT//CELL_SIZE)-1) if(((x, y) or (x+1,y)) not in obstacles_coords): - print(x,y) houses.append(House(x, y, 10, 10, 10)) obstacles_coords.append((x, y)) home_counter = home_counter - 1