From 08812ef920f211a4b3fe4d164d6e893b32688211 Mon Sep 17 00:00:00 2001 From: Edgar Solomonik Date: Tue, 7 Nov 2023 21:07:15 -0600 Subject: [PATCH] try another order of imports --- src_python/ctf/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src_python/ctf/__init__.py b/src_python/ctf/__init__.py index b76ebd52..f5c4337a 100644 --- a/src_python/ctf/__init__.py +++ b/src_python/ctf/__init__.py @@ -1,10 +1,9 @@ from ctf.world import * -from ctf.tensor_aux import * from ctf.tensor import * from ctf.term import * +from ctf.tensor_aux import * from ctf.profile import * from ctf.partition import * from ctf.multilinear import * from ctf.linalg import * from ctf import random -