Skip to content

Commit

Permalink
Fix codestyle W291 trailing whitespace
Browse files Browse the repository at this point in the history
Trailing space removed to pass code style check by pycodestyle-minimal.
  • Loading branch information
janekj2727 authored Oct 31, 2024
1 parent bcf1f96 commit 05d89d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/functions/trig.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __init__(self):
sage: tan(2+I).imag().n() # needs sage.symbolic
1.16673625724092
"""
GinacFunction.__init__(self, 'tan', latex_name=r"\tan",
GinacFunction.__init__(self, 'tan', latex_name=r"\tan",
conversions=dict(maxima='tan', mathematica='Tan',
giac='tan', fricas='tan', sympy='tan'))

Expand Down Expand Up @@ -351,7 +351,7 @@ def __init__(self):
sage: cot(1.+I) # needs sage.symbolic
0.217621561854403 - 0.868014142895925*I
"""
GinacFunction.__init__(self, 'cot', latex_name=r"\cot",
GinacFunction.__init__(self, 'cot', latex_name=r"\cot",
conversions=dict(maxima='cot', mathematica='Cot',
giac='cot', fricas='cot', sympy='cot'))

Expand Down Expand Up @@ -425,7 +425,7 @@ def __init__(self):
sage: sec(complex(1,1)) # rel tol 1e-15 # needs sage.rings.complex_double
(0.49833703055518686+0.5910838417210451j)
"""
GinacFunction.__init__(self, 'sec', latex_name=r"\sec",
GinacFunction.__init__(self, 'sec', latex_name=r"\sec",
conversions=dict(maxima='sec', mathematica='Sec',
giac='sec', fricas='sec', sympy='sec'))

Expand Down Expand Up @@ -499,7 +499,7 @@ def __init__(self):
sage: csc(complex(1,1)) # rel tol 1e-15 # needs sage.rings.complex_double
(0.6215180171704284-0.30393100162842646j)
"""
GinacFunction.__init__(self, 'csc', latex_name=r"\csc",
GinacFunction.__init__(self, 'csc', latex_name=r"\csc",
conversions=dict(maxima='csc', mathematica='Csc',
giac='csc', fricas='csc', sympy='csc'))

Expand Down

0 comments on commit 05d89d7

Please sign in to comment.