From 1677b2f927ed740ae27c6caa9596c49c4167e562 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Tue, 19 Dec 2017 16:03:20 +0100 Subject: [PATCH] Cleanup --- luke_19/engler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/luke_19/engler.py b/luke_19/engler.py index 0455671..af23b32 100755 --- a/luke_19/engler.py +++ b/luke_19/engler.py @@ -15,7 +15,6 @@ def main(): boardImg = Image.new('RGB', (400, 300), (255,255,255)) board = ImageDraw.Draw(boardImg) x, y = [0,0] - plotRectangle(x,y,board, 'green') for step, direction in path: if (direction == 'north'): @@ -24,7 +23,6 @@ def main(): board = plotRectangle(x, y, board) elif (direction == 'east'): for n in range(int(step)): - print(y) y += 1 board = plotRectangle(x, y, board) elif (direction == 'south'):