Skip to content

Commit 8b90b3b

Browse files
committed
fix the format of CliffordGate repr.
1 parent e2de439 commit 8b90b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cirq-core/cirq/ops/clifford_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def __pow__(self, exponent: float) -> 'CliffordGate':
433433
return CliffordGate.from_clifford_tableau(base_tableau)
434434

435435
def __repr__(self) -> str:
436-
return f"Clifford Gate with Tableau:\n {self.clifford_tableau._str_full_()}"
436+
return f"Clifford Gate with Tableau:\n{self.clifford_tableau._str_full_()}"
437437

438438
def _commutes_(
439439
self, other: Any, *, atol: float = 1e-8

0 commit comments

Comments
 (0)