Skip to content

Commit

Permalink
Fix display_name in Vehicle.as_dictionary. (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethroe authored Feb 27, 2024
1 parent e85f0b4 commit c0091f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyemvue/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def as_dictionary(self) -> 'dict[str, Any]':
'vehicleGid': self.vehicle_gid,
'vendor': self.vendor,
'apiId': self.api_id,
'displayName': self.displayName,
'displayName': self.display_name,
'loadGid': self.loadGid,
'make': self.make,
'model': self.model,
Expand Down

0 comments on commit c0091f6

Please sign in to comment.