diff --git a/ohmpi/hardware_components/dummy_ctl.py b/ohmpi/hardware_components/dummy_ctl.py index 657fc0f7739427f3c2a5e4cfd1ba1271b4916ede..0e16923f47caacf915ea718db81d91434ea9af13 100644 --- a/ohmpi/hardware_components/dummy_ctl.py +++ b/ohmpi/hardware_components/dummy_ctl.py @@ -1,4 +1,4 @@ -from ohmpi.ohmpi.config import HARDWARE_CONFIG +from ohmpi.config import HARDWARE_CONFIG import os from ohmpi.hardware_components import CtlAbstract CTL_CONFIG = HARDWARE_CONFIG['ctl'] @@ -8,4 +8,4 @@ class Ctl(CtlAbstract): def __init__(self, **kwargs): kwargs.update({'board_name': os.path.basename(__file__).rstrip('.py')}) super().__init__(**kwargs) - self.bus = None \ No newline at end of file + self.bus = None