vehicles.abstract_vehicle ========================= .. py:module:: vehicles.abstract_vehicle Classes ------- .. autoapisummary:: vehicles.abstract_vehicle.AbstractVehicle Module Contents --------------- .. py:class:: AbstractVehicle(make: str, model: str, year: int, mileage: float, fuel_consumption: float) Bases: :py:obj:`abc.ABC` Abstract class defining a vehicle. .. py:attribute:: make .. py:attribute:: model .. py:attribute:: year .. py:attribute:: mileage .. py:attribute:: fuel_consumption .. py:method:: display_info() :abstractmethod: Abstract method to display vehicle information.