Skip to content

Commit 293b259

Browse files
committed
fix the linter
1 parent a90d384 commit 293b259

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/rings/polynomial/multi_polynomial_ring_base.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,8 +623,8 @@ cdef class MPolynomialRing_base(CommutativeRing):
623623
if self is other:
624624
return True
625625
n = other.ngens()
626-
check = (self.ngens() >= n and
627-
self.variable_names()[:n] == other.variable_names())
626+
check = (self.ngens() >= n and
627+
self.variable_names()[:n] == other.variable_names())
628628
if other.base_ring is base_ring and check:
629629
return True
630630
elif base_ring.has_coerce_map_from(other._mpoly_base_ring(self.variable_names())):

0 commit comments

Comments
 (0)