Skip to content

Commit

Permalink
remove binary operator from vapp
Browse files Browse the repository at this point in the history
  • Loading branch information
eriksven committed Sep 4, 2023
1 parent 2007595 commit 0839d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/vapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ async def on_start(self):
async def on_seat_position_changed(self, data: DataPointReply):
response_topic = "seatadjuster/currentPosition"
logger.debug(
"Seat Position Changed " + str(data.get(
self.Vehicle.Cabin.Seat.Row1.Pos1.Position).value)
f"""Seat Position Changed {str(data.get(
self.Vehicle.Cabin.Seat.Row1.Pos1.Position).value)}"""
)
await self.publish_event(
response_topic,
Expand Down

0 comments on commit 0839d1e

Please sign in to comment.