Skip to content

Commit

Permalink
Correct error due to type of signal
Browse files Browse the repository at this point in the history
  • Loading branch information
tomtrafford committed Oct 31, 2024
1 parent 5434d1a commit 9f5813d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ophyd_async/fastcs/panda/_trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ async def prepare(self, value: ScanSpecInfo):
dir = True
rows += SeqTable.row(
trigger=trig,
position=chunk.lower[fast_axis][start]
/ await fast_axis.encoder_res.get_value(),
position=int(
chunk.lower[fast_axis][start]
/ await fast_axis.encoder_res.get_value()
),
)

# Time based triggers
Expand Down

0 comments on commit 9f5813d

Please sign in to comment.