moved compiled extension into slsdet

This commit is contained in:
froejdh_e
2025-03-18 10:56:03 +01:00
parent eb8c34f53b
commit bc187bb198
17 changed files with 26 additions and 24 deletions

View File

@ -15,8 +15,8 @@ if dt === detectorType.EIGER:
"""
import _slsdet
from . import _slsdet
for name, cls in _slsdet.slsDetectorDefs.__dict__.items():
if isinstance(cls, type):
exec(f'{name} = {cls.__module__}.{cls.__qualname__}')
exec(f'{name} = _slsdet.{cls.__qualname__}')