From 97131e02cfbc0f13ebfdc191133e578c710e6a2c Mon Sep 17 00:00:00 2001 From: adrienmalin <41926238+adrienmalin@users.noreply.github.com> Date: Sat, 11 Aug 2018 12:46:23 +0200 Subject: [PATCH] minor fix - def move(self, horizontally, vertically, trail=False): + def move(self, horizontally, vertically, trail=0): --- tetromino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tetromino.py b/tetromino.py index 7a73ef8..b58351e 100644 --- a/tetromino.py +++ b/tetromino.py @@ -96,7 +96,7 @@ class Tetromino: self.matrix.update() return True - def move(self, horizontally, vertically, trail=False): + def move(self, horizontally, vertically, trail=0): """ Try to translate self horizontally or vertically The Tetrimino in play falls from just above the Skyline one cell at a time,