Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 22, 2024
1 parent b0b1227 commit 2fffca7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/qibolab/pulses/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .envelope import *
from .pulse import Align, Acquisition, Delay, Pulse, PulseLike, VirtualZ
from .pulse import Acquisition, Align, Delay, Pulse, PulseLike, VirtualZ
3 changes: 2 additions & 1 deletion src/qibolab/pulses/pulse.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,6 @@ class Align(_PulseLike):


PulseLike = Annotated[
Union[Align, Pulse, Delay, VirtualZ, Acquisition, _Readout], Field(discriminator="kind")
Union[Align, Pulse, Delay, VirtualZ, Acquisition, _Readout],
Field(discriminator="kind"),
]
2 changes: 1 addition & 1 deletion src/qibolab/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from qibolab.pulses.pulse import Pulse, _Readout

from .identifier import ChannelId, ChannelType
from .pulses import Align, Acquisition, Delay, PulseLike
from .pulses import Acquisition, Align, Delay, PulseLike

__all__ = ["PulseSequence"]

Expand Down

0 comments on commit 2fffca7

Please sign in to comment.