From bcb6cae2434bd1a195489122e40ffc6e0b1898c1 Mon Sep 17 00:00:00 2001 From: Henry <henry.korb@geo.uu.se> Date: Tue, 14 Nov 2023 17:04:02 +0100 Subject: [PATCH] remove imports from init --- pythonbindings/pyfluids/__init__.py | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/pythonbindings/pyfluids/__init__.py b/pythonbindings/pyfluids/__init__.py index 5b4197972..acd2f2605 100644 --- a/pythonbindings/pyfluids/__init__.py +++ b/pythonbindings/pyfluids/__init__.py @@ -31,28 +31,4 @@ r""" ! \ingroup pyfluids ! \author Henry Korb ======================================================================================= -""" -try: - from . import basics -except ImportError: - print("Basics bindings not included") -try: - from . import logger -except ImportError: - print("Logger bindings not included") -try: - from . import lbm -except ImportError: - print("LBM bindings not included") -try: - from . import communicator -except ImportError: - print("communicator bindings not included") -try: - from . import gpu -except ImportError: - print("GPU bindings not included") -try: - from . import cpu -except ImportError: - print("CPU bindings not included") \ No newline at end of file +""" \ No newline at end of file -- GitLab