Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed May 14, 2024
1 parent 431a058 commit eb094df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/thorlabs_mff_fastcs/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ def read_position(self, response: bytes) -> bool:

def set_position(self, desired: bool) -> bytes:
if desired:
return b"\x6A\x04\x00\x02\x50\x01"
return b"\x6a\x04\x00\x02\x50\x01"
else:
return b"\x6A\x04\x00\x01\x50\x01"
return b"\x6a\x04\x00\x01\x50\x01"

def get_info(self) -> bytes:
return b"\x05\x00\x00\x00\x50\x01"
Expand Down

0 comments on commit eb094df

Please sign in to comment.