onboardapis.ship
Package for ships
Operator ID
The operator ID for ships is the
1""" 2Package for ships 3 4## Operator ID 5 6The operator ID for ships is the <undefined>. 7""" 8from __future__ import annotations 9 10from abc import ABCMeta 11 12from .. import Vehicle 13 14__all__ = [ 15 "Ship", 16] 17 18 19class Ship(Vehicle, metaclass=ABCMeta): 20 """ 21 Base class for ships 22 """
Base class for ships