A class representing a static obstacle.
| 214 | |
| 215 | |
| 216 | class StaticObstacle(Obstacle): |
| 217 | """ |
| 218 | A class representing a static obstacle. |
| 219 | """ |
| 220 | |
| 221 | def __init__(self, |
| 222 | obstacle_id: str, |
| 223 | shape: Shape, |
| 224 | obstacle_type: ObsType, |
| 225 | current_state: State, |
| 226 | lane_id: str, |
| 227 | edge: str = "") -> None: |
| 228 | super().__init__(obstacle_id, shape, obstacle_type, current_state, |
| 229 | lane_id, edge) |
| 230 | |
| 231 | |
| 232 | class DynamicObstacle(Obstacle): |
nothing calls this directly
no outgoing calls
no test coverage detected