more car info -> car docs (#31885)

This commit is contained in:
Justin Newberry
2024-03-17 19:53:57 -04:00
committed by GitHub
parent 3e816e7df8
commit 0b92f4e9ee
11 changed files with 69 additions and 69 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
from collections import Counter
from pprint import pprint
from openpilot.selfdrive.car.docs import get_all_car_info
from openpilot.selfdrive.car.docs import get_all_car_docs
if __name__ == "__main__":
cars = get_all_car_info()
cars = get_all_car_docs()
make_count = Counter(l.make for l in cars)
print("\n", "*" * 20, len(cars), "total", "*" * 20, "\n")
pprint(make_count)