From d465ff215bcbeb336db558373292c3c15a1ee6cc Mon Sep 17 00:00:00 2001 From: Guillaume <sagitta1618@gmail.com> Date: Sun, 7 Jul 2024 15:10:41 +0200 Subject: [PATCH] Import create_sequence() --- ohmpi/hardware_components/mb_2024_0_2.py | 2 +- ohmpi/ohmpi.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ohmpi/hardware_components/mb_2024_0_2.py b/ohmpi/hardware_components/mb_2024_0_2.py index c9793fd2..48423eaa 100644 --- a/ohmpi/hardware_components/mb_2024_0_2.py +++ b/ohmpi/hardware_components/mb_2024_0_2.py @@ -163,7 +163,7 @@ class Tx(Tx_mb_2023): self.exec_logger.event(f'{self.model}\ttx_pwr_state_off\tend\t{datetime.datetime.utcnow()}') def current_pulse(self, current=None, length=None, polarity=1): - """ Generates a square current pulse. Currenttly no DPS can handle this... + """ Generates a square current pulse. Currently no DPS can handle this... Parameters ---------- diff --git a/ohmpi/ohmpi.py b/ohmpi/ohmpi.py index a7e510bb..feaa23c5 100644 --- a/ohmpi/ohmpi.py +++ b/ohmpi/ohmpi.py @@ -37,8 +37,7 @@ except ModuleNotFoundError: sys.exit(-1) from ohmpi.config import MQTT_CONTROL_CONFIG, OHMPI_CONFIG, EXEC_LOGGING_CONFIG from ohmpi.hardware_system import OhmPiHardware -from ohmpi.sequence import (dpdp1, dpdp2, wenner_alpha, wenner_beta, wenner, - wenner_gamma, schlum1, schlum2, multigrad) +from ohmpi.sequence import create_sequence from tqdm.auto import tqdm import warnings -- GitLab