From 36f2ff3d8ea99461121e91a412574a007ea3eeba Mon Sep 17 00:00:00 2001 From: louloufev <99874517+louloufev@users.noreply.github.com> Date: Thu, 7 Sep 2023 11:26:29 +0200 Subject: [PATCH] Update electron.pxd imported the wrong Function1D, the one from raysect but it only works with the one from cherab --- cherab/compass/math/profile/electron.pxd | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cherab/compass/math/profile/electron.pxd b/cherab/compass/math/profile/electron.pxd index b1cee70..c3dad69 100644 --- a/cherab/compass/math/profile/electron.pxd +++ b/cherab/compass/math/profile/electron.pxd @@ -1,5 +1,4 @@ -from raysect.core.math.function cimport Function1D - +from cherab.core.math.function cimport Function1D cdef class ModifiedTanhGaussian(Function1D): @@ -12,4 +11,4 @@ cdef class ModifiedTanhGaussian(Function1D): cdef double mtanh(self, double x) - cdef double core(self, double x) \ No newline at end of file + cdef double core(self, double x)