From 0d146cf0395fba8e8ac479ed3c8502063c27eb37 Mon Sep 17 00:00:00 2001 From: Laurent Mercadier <laurent.mercadier@xfel.eu> Date: Sat, 21 Jan 2023 06:34:45 +0100 Subject: [PATCH] add Viking to detectors init file --- src/toolbox_scs/detectors/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/toolbox_scs/detectors/__init__.py b/src/toolbox_scs/detectors/__init__.py index b6c4ac5..2b7be5e 100644 --- a/src/toolbox_scs/detectors/__init__.py +++ b/src/toolbox_scs/detectors/__init__.py @@ -7,6 +7,7 @@ from .dssc_misc import * from .dssc_processing import * from .hrixs import * from .pes import * +from .viking import * from .xgm import * __all__ = ( @@ -19,5 +20,6 @@ __all__ = ( + dssc_processing.__all__ + hrixs.__all__ + pes.__all__ + + viking.__all__ + xgm.__all__ ) -- GitLab