Skip to content

Commit

Permalink
fix: type of Parameters.pulses list
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 authored and alecandido committed Aug 16, 2024
1 parent 319e7bc commit 82900a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibolab/instruments/qm/program/arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Parameters:
duration: Optional[_Variable] = None
amplitude: Optional[_Variable] = None
phase: Optional[_Variable] = None
pulses: list[str] = field(default_factory=list)
pulses: list[tuple[float, str]] = field(default_factory=list)


@dataclass
Expand Down

0 comments on commit 82900a5

Please sign in to comment.