Skip to content

Commit ba40a93

Browse files
authored
change import order to avoid circular dependency (#156)
1 parent 1b1d0c7 commit ba40a93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mkl_fft/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

27-
import mkl_fft.interfaces
28-
2927
from . import _init_helper
3028

3129
# pylint: disable=no-name-in-module
@@ -47,6 +45,8 @@
4745
)
4846
from ._version import __version__
4947

48+
import mkl_fft.interfaces # isort: skip
49+
5050
__all__ = [
5151
"fft",
5252
"ifft",

0 commit comments

Comments
 (0)