Skip to content

Commit

Permalink
Use python 3.8 compatible type union syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
terrorfisch committed Oct 19, 2023
1 parent bd033e5 commit 6670bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qupulse/program/linspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class Play:
channels: Tuple[ChannelID]


Command = Increment | Set | LoopLabel | LoopJmp | Wait | Play
Command = Union[Increment, Set, LoopLabel, LoopJmp, Wait, Play]


@dataclass(frozen=True)
Expand Down

0 comments on commit 6670bbf

Please sign in to comment.