Skip to content

Commit

Permalink
hide debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
akissinger committed Oct 16, 2024
1 parent 5af97cf commit 035f377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyzx/graph/scalar.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def from_json(cls, s: Union[str,Dict[str,Any]]) -> 'Scalar':
d = json.loads(s)
else:
d = s
print('scalar from json', repr(d))
# print('scalar from json', repr(d))
scalar = Scalar()
scalar.phase = Fraction(d["phase"]) # TODO support parameters
scalar.power2 = int(d["power2"])
Expand Down

0 comments on commit 035f377

Please sign in to comment.