Skip to content

Commit 6a8bc10

Browse files
committed
Fix formatting
1 parent d1972c6 commit 6a8bc10

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

qualtran/_infra/data_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ def _quint_equivalent(self) -> QUInt:
10781078
def to_gf_coefficients(self, f_x: galois.Poly) -> galois.Array:
10791079
"""Returns a big-endian array of coefficients of the polynomial f(x)."""
10801080
f_x_coeffs = self.qgf.gf_type.Zeros(self.degree + 1)
1081-
f_x_coeffs[self.degree - f_x.degree:] = f_x.coeffs
1081+
f_x_coeffs[self.degree - f_x.degree :] = f_x.coeffs
10821082
return f_x_coeffs
10831083

10841084
def from_gf_coefficients(self, f_x: galois.Array) -> galois.Poly:

0 commit comments

Comments
 (0)