Skip to content

Commit ec986c0

Browse files
committed
Change current_pos to a tuple because it was causing lint failing in github CI
1 parent 9d71e54 commit ec986c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dodal/devices/scintillator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _check_position(
6969
)
7070

7171
def _get_selected_position(self, y: float, z: float) -> InOut:
72-
current_pos = [y, z]
72+
current_pos = (y, z)
7373
if self._check_position(current_pos, self._scintillator_out_yz_mm):
7474
return InOut.OUT
7575

0 commit comments

Comments
 (0)