Skip to content

Commit

Permalink
fix: drop ExecutionParameters from Parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Sep 20, 2024
1 parent 4ff947a commit 7fbd637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qibocal/auto/operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def execution_parameters(self):
if self.classify
else AcquisitionType.INTEGRATION
)
return ExecutionParameters(
return dict(
nshots=self.nshots,
relaxation_time=self.relaxation_time,
acquisition_type=acquisition_type,
Expand Down
2 changes: 1 addition & 1 deletion src/qibocal/protocols/resonator_spectroscopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ def _acquisition(

results = platform.execute(
[sequence],
params.execution_parameters,
[sweepers],
**params.execution_parameters,
)

# retrieve the results for every qubit
Expand Down

0 comments on commit 7fbd637

Please sign in to comment.