Skip to content

Commit

Permalink
Output status value as hex
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jul 14, 2023
1 parent cd15e22 commit 88982ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lvmguider/actor/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def status(self, new_value: GuiderStatus):
self.write(
"d",
{
"status": f"0x{self._status.value}",
"status": f"0x{self._status.value:x}",
"status_labels": ",".join(self._status.get_names()),
},
internal=True,
Expand Down

0 comments on commit 88982ff

Please sign in to comment.