Skip to content

Commit

Permalink
hotfix: change octave I/Q_connection from QuamList to tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
nulinspiratie committed Apr 10, 2024
1 parent dab2736 commit a64db09
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit a64db09

Please sign in to comment.