mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-10 15:32:10 +08:00
be05ffa5bf
date: 2024-02-26T20:43:48 commit: 61592bc9e895361b44b62dd805c59bf41d486183
15 lines
289 B
Python
15 lines
289 B
Python
# from enum import StrEnum
|
|
from strenum import StrEnum
|
|
from typing import Dict, List, Optional, Union
|
|
|
|
from openpilot.selfdrive.car.docs_definitions import CarInfo
|
|
|
|
|
|
class CAR(StrEnum):
|
|
MOCK = 'mock'
|
|
|
|
|
|
CAR_INFO: Dict[str, Optional[Union[CarInfo, List[CarInfo]]]] = {
|
|
CAR.MOCK: None,
|
|
}
|