fix circular import reported by LGTM

This commit is contained in:
Adeeb Shihadeh 2020-05-09 16:47:36 -07:00
parent df238560f4
commit 48dec51f0e

View file

@ -197,6 +197,7 @@ class VehicleModel():
if __name__ == '__main__':
"""
import math
from selfdrive.car.honda.interface import CarInterface
from selfdrive.car.honda.values import CAR
@ -204,3 +205,5 @@ if __name__ == '__main__':
CP = CarInterface.get_params(CAR.CIVIC)
VM = VehicleModel(CP)
print(VM.yaw_rate(math.radians(20), 10.))
"""
pass