From 78b2585093ad9869bd2c272c3884f3fae47cb7dc Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Wed, 11 Oct 2023 01:00:12 +0200
Subject: [PATCH] Improve code consistency

---
 ohmpi/hardware_components/mb_2023_0_X.py | 1 -
 ohmpi/hardware_components/mb_2024_0_2.py | 1 -
 2 files changed, 2 deletions(-)

diff --git a/ohmpi/hardware_components/mb_2023_0_X.py b/ohmpi/hardware_components/mb_2023_0_X.py
index 91a993a2..196d54e1 100644
--- a/ohmpi/hardware_components/mb_2023_0_X.py
+++ b/ohmpi/hardware_components/mb_2023_0_X.py
@@ -72,7 +72,6 @@ class Tx(TxAbstract):
             subclass_init = False
         else:
             subclass_init = True
-        print(f'mb_2023 kwargs: {kwargs}, subclass_init : {subclass_init}')
         super().__init__(**kwargs)
         if not subclass_init:
             self.exec_logger.event(f'{self.model}\ttx_init\tbegin\t{datetime.datetime.utcnow()}')
diff --git a/ohmpi/hardware_components/mb_2024_0_2.py b/ohmpi/hardware_components/mb_2024_0_2.py
index a76549df..62b32bed 100644
--- a/ohmpi/hardware_components/mb_2024_0_2.py
+++ b/ohmpi/hardware_components/mb_2024_0_2.py
@@ -72,7 +72,6 @@ class Tx(Tx_mb_2023):
             subclass_init = False
         else:
             subclass_init = True
-        print(f'mb_2024 kwargs: {kwargs}, subclass_init : {subclass_init}')
         super().__init__(**kwargs)
         if not subclass_init:
             self.exec_logger.event(f'{self.model}\ttx_init\tbegin\t{datetime.datetime.utcnow()}')
-- 
GitLab