diff --git a/knight.py b/knight.py index 537ceea..c35740e 100644 --- a/knight.py +++ b/knight.py @@ -2,4 +2,6 @@ from piece import Piece from square import Square class Knight(Piece): def __init__(self, color): - super().__init__("knight", color) \ No newline at end of file + super().__init__("knight", color) + +#test \ No newline at end of file