diff --git a/src/boat.py b/src/boat.py index c7e8c81..0da9c2f 100644 --- a/src/boat.py +++ b/src/boat.py @@ -22,7 +22,7 @@ class Boat: When a Boat goes to string, the returned value is simply the name of this Boat. """ return self.name - def __eq__(self, other): + def __eq__(self, other): if other is None: return False if not isinstance(other, self.__class__):