Skip to content

Commit

Permalink
removing repr=False
Browse files Browse the repository at this point in the history
  • Loading branch information
weinbe58 committed Sep 28, 2023
1 parent 74df197 commit 2b74cd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bloqade/ir/control/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def show(self, **assignment):
display_ir(self, **assignment)


@dataclass(init=False, repr=False)
@dataclass(init=False)
class ScaledLocations(SpatialModulation):
value: Dict[Location, Scalar]

Expand Down
2 changes: 1 addition & 1 deletion src/bloqade/ir/control/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def show(self, **assignments):
display_ir(self, assignments)


@dataclass(repr=False)
@dataclass
class Slice(SequenceExpr):
sequence: SequenceExpr
interval: Interval
Expand Down

0 comments on commit 2b74cd2

Please sign in to comment.