diff --git a/Vehicle.py b/Vehicle.py index 0ed9256..1941f6b 100644 --- a/Vehicle.py +++ b/Vehicle.py @@ -11,3 +11,6 @@ def display_info(self): def honk(self): """A general honk sound for all vehicles.""" return "Beep beep!" + + def fuel_up(self): + return "Full tank"