Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix: change octave I/Q_connection from QuamList to tuple #26

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quam/components/octave.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def apply_to_config(self, config: Dict) -> None:
if isinstance(self.channel, SingleChannel):
output_config["I_connection"] = self.channel.opx_output
elif isinstance(self.channel, IQChannel):
output_config["I_connection"] = self.channel.opx_output_I
output_config["Q_connection"] = self.channel.opx_output_Q
output_config["I_connection"] = tuple(self.channel.opx_output_I)
output_config["Q_connection"] = tuple(self.channel.opx_output_Q)


@quam_dataclass
Expand Down