Skip to content

Commit

Permalink
Update fraction_field_element.pyx
Browse files Browse the repository at this point in the history
fix space
  • Loading branch information
fchapoton authored Mar 20, 2023
1 parent 9aedaa0 commit 09b7f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/rings/fraction_field_element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ cdef class FractionFieldElement(FieldElement):
b = self.denominator()
if not root:
return (a * b).is_square(root=False)
is_sqr, sq_rt = ( a *b).is_square(root=True)
is_sqr, sq_rt = (a * b).is_square(root=True)
if is_sqr:
return True, self._parent(sq_rt / b)
return False, None
Expand Down

0 comments on commit 09b7f9d

Please sign in to comment.