From 3dd49e0d53d4fd99c601c4aba81f11bd508e45ea Mon Sep 17 00:00:00 2001 From: HarrisonWilde Date: Thu, 19 Oct 2023 09:07:18 +0100 Subject: [PATCH] Critical fix for module imports --- src/nhssynth/modules/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/nhssynth/modules/__init__.py b/src/nhssynth/modules/__init__.py index e69de29b..f3cb8f7b 100644 --- a/src/nhssynth/modules/__init__.py +++ b/src/nhssynth/modules/__init__.py @@ -0,0 +1,6 @@ +import nhssynth.modules.dashboard as dashboard # noqa: F401 +import nhssynth.modules.dataloader as dataloader # noqa: F401 +import nhssynth.modules.evaluation as evaluation # noqa: F401 +import nhssynth.modules.model as model # noqa: F401 +import nhssynth.modules.plotting as plotting # noqa: F401 +import nhssynth.modules.structure as structure # noqa: F401