This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const A1_CATEGORY_DELAY = { | |
minutes: 0, | |
seconds: 0, | |
}; | |
export const B1_CATEGORY_DELAY = { | |
minutes: 1, | |
seconds: 0, | |
}; | |
export const C1_CATEGORY_DELAY = { | |
minutes: 2, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass, field | |
@dataclass | |
class VehicleSpecificationsForm: | |
vehicle_body_length: int | |
vehicle_body_height: int | |
vehicle_body_width: int | |
vehicle_volume_capacity: float = field(init=False) |