Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix indentation (PEP 8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed May 10, 2015
1 parent 07ad588 commit d70023e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/modular/modsym/manin_symbol.pyx
Expand Up @@ -255,9 +255,9 @@ cdef class ManinSymbol(Element):
raise ValueError("matrix(=%s) must be 2x2" % matrix)
matrix = matrix.list()
return type(self)(self.parent(),
(self.i,
matrix[0]*self.u + matrix[2]*self.v,
matrix[1]*self.u + matrix[3]*self.v))
(self.i,
matrix[0]*self.u + matrix[2]*self.v,
matrix[1]*self.u + matrix[3]*self.v))

def apply(self, a,b,c,d):
"""
Expand Down

0 comments on commit d70023e

Please sign in to comment.