Skip to content

Commit

Permalink
Fix car docs generation for the website
Browse files Browse the repository at this point in the history
Forgot to add
  • Loading branch information
sshane committed Dec 13, 2024
1 parent 2324125 commit 8614cb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opendbc/car/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from opendbc.car.common.basedir import BASEDIR
from opendbc.car import gen_empty_fingerprint
from opendbc.car.structs import CarParams
from opendbc.car.docs_definitions import CarDocs, ExtraCarDocs, Column, ExtraCarsColumn, CommonFootnote, PartType
from opendbc.car.docs_definitions import CarDocs, Device, ExtraCarDocs, Column, ExtraCarsColumn, CommonFootnote, PartType
from opendbc.car.car_helpers import interfaces, get_interface_attr
from opendbc.car.values import Platform, PLATFORMS
from opendbc.car.mock.values import CAR as MOCK
Expand Down Expand Up @@ -89,7 +89,7 @@ def generate_cars_md(all_car_docs: list[CarDocs], template_fn: str) -> str:
footnotes = [fn.value.text for fn in get_all_footnotes()]
cars_md: str = template.render(all_car_docs=all_car_docs, PartType=PartType,
group_by_make=group_by_make, footnotes=footnotes,
Column=Column)
Device=Device, Column=Column)
return cars_md


Expand Down

0 comments on commit 8614cb8

Please sign in to comment.