Skip to content

Commit

Permalink
fix: revert the changes of the vdm Cabin to include the SeatService (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
emsameen authored Oct 5, 2022
1 parent 5069a52 commit ab9aa0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdv_model/Cabin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
from sdv_model.Cabin.RearShade import RearShade
from sdv_model.Cabin.RearviewMirror import RearviewMirror
from sdv_model.Cabin.Seat import Seat
from sdv_model.Cabin.SeatService import SeatService
from sdv_model.Cabin.Sunroof import Sunroof


Expand Down Expand Up @@ -97,6 +98,7 @@ def __init__(self, name, parent):
self.Lights = Lights("Lights", self)
self.Door = DoorCollection("Door", self)
self.DoorCount = DataPointUint8("DoorCount", self)
self.SeatService = SeatService()
self.Seat = SeatCollection("Seat", self)
self.DriverPosition = DataPointUint8("DriverPosition", self)
self.SeatRowCount = DataPointUint8("SeatRowCount", self)
Expand Down

0 comments on commit ab9aa0b

Please sign in to comment.