From 32d1f2bb41dfe64a8edceff60e2b44e3c83f87dd Mon Sep 17 00:00:00 2001 From: Daniel Pozsar Date: Mon, 11 Nov 2024 11:23:07 +0100 Subject: [PATCH] restructured import --- src/grogupy/__init__.py | 7 ------- src/grogupy/grogu.py | 7 ++++++- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/grogupy/__init__.py b/src/grogupy/__init__.py index ce4a624..0cb25f8 100644 --- a/src/grogupy/__init__.py +++ b/src/grogupy/__init__.py @@ -20,10 +20,3 @@ """Docstring in init. """ - - -from grogupy.core import * -from grogupy.globals import * -from grogupy.io import * -from grogupy.magnetism import * -from grogupy.utilities import * diff --git a/src/grogupy/grogu.py b/src/grogupy/grogu.py index 5b6a003..105d245 100644 --- a/src/grogupy/grogu.py +++ b/src/grogupy/grogu.py @@ -47,7 +47,12 @@ except: print("Please install tqdm for nice progress bar.") tqdm_imported = False -from grogupy import * + +from .core import * +from .globals import * +from .io import * +from .magnetism import * +from .utilities import * def parse_command_line():