From 66c2b4559415cbffc7cfe81a70d062fcef9ee653 Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Tue, 16 May 2023 19:16:42 +0200
Subject: [PATCH] Replaces OhmPi imports with ohmpi imports

---
 ohmpi/hardware_system.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ohmpi/hardware_system.py b/ohmpi/hardware_system.py
index 3c1035b0..a81147d6 100644
--- a/ohmpi/hardware_system.py
+++ b/ohmpi/hardware_system.py
@@ -12,7 +12,7 @@ from ohmpi.config import HARDWARE_CONFIG
 from threading import Thread, Event, Barrier
 
 ctl_module = importlib.import_module(f'ohmpi.hardware_components.{HARDWARE_CONFIG["ctl"]["model"]}')
-pwr_module = importlib.import_module(f'Ohmpi.hardware_components.{HARDWARE_CONFIG["pwr"]["model"]}')
+pwr_module = importlib.import_module(f'ohmpi.hardware_components.{HARDWARE_CONFIG["pwr"]["model"]}')
 tx_module = importlib.import_module(f'ohmpi.hardware_components.{HARDWARE_CONFIG["tx"]["model"]}')
 rx_module = importlib.import_module(f'ohmpi.hardware_components.{HARDWARE_CONFIG["rx"]["model"]}')
 MUX_CONFIG = {}
-- 
GitLab