Skip to content

Commit ef98cb5

Browse files
author
Matthias Koeppe
committed
Replace relative imports by absolute imports because pytest
1 parent a8b4557 commit ef98cb5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/sage/functions/hypergeometric.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,11 @@
166166

167167
from sage.arith.misc import binomial, factorial, rising_factorial
168168
from sage.calculus.functional import derivative
169+
from sage.functions.error import erf
170+
from sage.functions.gamma import gamma
171+
from sage.functions.hyperbolic import cosh, sinh
172+
from sage.functions.log import exp, log
173+
from sage.functions.other import sqrt, real_part
169174
from sage.libs.mpmath import utils as mpmath_utils
170175
from sage.misc.latex import latex
171176
from sage.misc.misc_c import prod
@@ -179,12 +184,6 @@
179184
from sage.symbolic.function import BuiltinFunction
180185
from sage.symbolic.ring import SR
181186

182-
from .error import erf
183-
from .gamma import gamma
184-
from .hyperbolic import cosh, sinh
185-
from .log import exp, log
186-
from .other import sqrt, real_part
187-
188187

189188
def rational_param_as_tuple(x):
190189
r"""

0 commit comments

Comments
 (0)