Source code for nrel.hive.dispatcher.instruction.instruction_result

from __future__ import annotations

from typing import NamedTuple, TYPE_CHECKING

if TYPE_CHECKING:
    from nrel.hive.state.vehicle_state.vehicle_state import VehicleState


[docs]class InstructionResult(NamedTuple): prev_state: VehicleState next_state: VehicleState