From 40aba7109fded370cdd6f1af1d4a39727cc433a0 Mon Sep 17 00:00:00 2001 From: pollyshaw Date: Sun, 19 Jun 2022 14:06:22 +0100 Subject: [PATCH] Fixes #7078: Execute black --- qiskit/pulse/instructions/acquire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qiskit/pulse/instructions/acquire.py b/qiskit/pulse/instructions/acquire.py index 0322d7742e21..a7abdd33ccf9 100644 --- a/qiskit/pulse/instructions/acquire.py +++ b/qiskit/pulse/instructions/acquire.py @@ -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]: