diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-11-05 23:06:18 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2021-11-05 23:06:47 +0100 |
commit | c51fd84bc896c74f291b4c5f2c73b5e5852de3e5 (patch) | |
tree | a14b5a2453018f3eccc324b7372f926595657619 /pycameltris/piece.py | |
parent | 6f6b6ceb8a1bca2d7ab08528ddb64f49e71b7283 (diff) |
Do not use parenthesis when defining a class without inheritance
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
Diffstat (limited to 'pycameltris/piece.py')
-rw-r--r-- | pycameltris/piece.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pycameltris/piece.py b/pycameltris/piece.py index aaeac66..2f3e7ce 100644 --- a/pycameltris/piece.py +++ b/pycameltris/piece.py @@ -14,7 +14,7 @@ yellow = (164, 164, 30) cyan = (30, 164, 150) -class Piece(): +class Piece: def __init__(self): self.square = square_template.copy() |