From 412d7f99afa1c726454993860527b3c816eab5da Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Thu, 31 Aug 2023 15:39:51 +0200
Subject: [PATCH] Fixes bug in dummy_ctl

---
 ohmpi/hardware_components/dummy_ctl.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ohmpi/hardware_components/dummy_ctl.py b/ohmpi/hardware_components/dummy_ctl.py
index 657fc0f7..0e16923f 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
-- 
GitLab