Skip to content

Commit 1c1fa81

Browse files
committed
fix: resolve lint and startup issues in normalizers
1 parent a4ae447 commit 1c1fa81

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/nomad_cau_plugin/measurements/__init__.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
from nomad.config.models.plugins import SchemaPackageEntryPoint
22

3-
from nomad_cau_plugin.measurements.CaP_experiments import m_package as m_package_mro004
4-
from nomad_cau_plugin.measurements.MRO005 import m_package as m_package_mro005
5-
63

74
class MRO005SchemaPackageEntryPoint(SchemaPackageEntryPoint):
85
def load(self):
6+
from nomad_cau_plugin.measurements.MRO005 import ( # noqa: PLC0415
7+
m_package as m_package_mro005,
8+
)
9+
910
return m_package_mro005
1011

1112

@@ -17,6 +18,10 @@ def load(self):
1718

1819
class MRO004SchemaPackageEntryPoint(SchemaPackageEntryPoint):
1920
def load(self):
21+
from nomad_cau_plugin.measurements.CaP_experiments import ( # noqa: PLC0415
22+
m_package as m_package_mro004,
23+
)
24+
2025
return m_package_mro004
2126

2227

0 commit comments

Comments
 (0)