Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fernandes committed Aug 13, 2024
1 parent 4b9da17 commit 423c1a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class CentroidDevice(Device):
valutes_to_average: Number of reads centroid will do, then take mean
"""

centroid_x_rbv: EpicsSignalRO = Component(EpicsSignalRO, "CentroidX_RBV")
centroid_y_rbv: EpicsSignalRO = Component(EpicsSignalRO, "CentroidY_RBV")
centroid_x_rbv: Component = Component(EpicsSignalRO, "CentroidX_RBV")
centroid_y_rbv: Component = Component(EpicsSignalRO, "CentroidY_RBV")

values_to_average = 1

Expand Down

0 comments on commit 423c1a2

Please sign in to comment.