From 05d89d70c9e93c142095dbed81dc5f8c08dda6fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Janek?= <106813190+janekj2727@users.noreply.github.com> Date: Thu, 31 Oct 2024 09:20:14 +0100 Subject: [PATCH] Fix codestyle W291 trailing whitespace Trailing space removed to pass code style check by pycodestyle-minimal. --- src/sage/functions/trig.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sage/functions/trig.py b/src/sage/functions/trig.py index c60aada0243..8f390205cae 100644 --- a/src/sage/functions/trig.py +++ b/src/sage/functions/trig.py @@ -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')) @@ -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')) @@ -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')) @@ -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'))