From 169029274e282a54df3292f6aa0d7bfbeb95ef9c Mon Sep 17 00:00:00 2001 From: Alvin Noe Ladines Date: Tue, 20 Aug 2024 15:55:52 +0200 Subject: [PATCH] Add load module function --- runschema/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runschema/__init__.py b/runschema/__init__.py index 16c828a..1c51edb 100644 --- a/runschema/__init__.py +++ b/runschema/__init__.py @@ -19,6 +19,9 @@ from nomad.config.models.plugins import SchemaPackageEntryPoint +def load_module(): + from . import calculation, system, method, run # noqa + class RunSchemaEntryPoint(SchemaPackageEntryPoint): def load(self): from .run import m_package