Skip to content

Commit

Permalink
Fix underscore instead of dot when constructing ADQ channel key
Browse files Browse the repository at this point in the history
  • Loading branch information
philsmt committed Aug 2, 2024
1 parent 438a8d3 commit b870637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extra/components/adq.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def name(self):
def channel_key(self, suffix):
"""Instrument KeyData object of this channel."""
return self._instrument_src[f'digitizers.channel_{self._channel_name}'
f'_{suffix}']
f'.{suffix}']

@property
def raw_samples_key(self):
Expand Down

0 comments on commit b870637

Please sign in to comment.