Skip to content

Commit

Permalink
De stringify type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
terrorfisch committed Nov 16, 2023
1 parent 86893e7 commit 6b23c89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qupulse/program/linspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ class LoopLabel:
class Increment:
channel: int
value: float
dependency_key: 'DepKey'
dependency_key: DepKey


@dataclass
class Set:
channel: int
value: float
key: 'DepKey' = dataclasses.field(default_factory=lambda: DepKey(()))
key: DepKey = dataclasses.field(default_factory=lambda: DepKey(()))


@dataclass
Expand Down

0 comments on commit 6b23c89

Please sign in to comment.