from enum import Enum class ShipDirection(Enum): VERTICAL = 'VERTICAL' HORIZONTAL = 'HORIZONTAL' UNKNOWN = 'UNKNOWN'