Skip to content

Commit

Permalink
fixing print weight unit bug ( only printed kg)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeJGuay committed Jun 1, 2023
1 parent d6e21a1 commit 0db1f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcs5/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def stop_marel_listening(self):

def marel_get_weight(self):
if self.marel is not None:
weight = self.marel.get_weight()
weight = self.marel.get_weight(self.marel.units)
if self.marel.weight is not None:
self.to_keyboard(weight)
if self.auto_enter is True:
Expand Down

0 comments on commit 0db1f0c

Please sign in to comment.