Skip to content

Commit

Permalink
Fixes Qiskit#7078: Execute black
Browse files Browse the repository at this point in the history
  • Loading branch information
pollyshaw committed Jul 19, 2022
1 parent 34ffb0b commit 40aba71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit/pulse/instructions/acquire.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def channel(self) -> AcquireChannel:
@property
def channels(self) -> Tuple[AcquireChannel]:
"""Returns the channels that this schedule uses."""
return self.channel,
return (self.channel,)

@property
def duration(self) -> Union[int, ParameterExpression]:
Expand Down

0 comments on commit 40aba71

Please sign in to comment.