6 lines
139 B
Python
6 lines
139 B
Python
|
#!/usr/bin/env python3
|
||
|
from openpilot.selfdrive.car.interfaces import RadarInterfaceBase
|
||
|
|
||
|
class RadarInterface(RadarInterfaceBase):
|
||
|
pass
|