From 694b481a4a92d53f773e73bd6fe37a00ee39bcf7 Mon Sep 17 00:00:00 2001 From: JonathanNoky Date: Tue, 5 Nov 2024 14:24:47 +0100 Subject: [PATCH] Small Fix: ACT -> ETO --- src/nomad_measurements/ppms/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nomad_measurements/ppms/schema.py b/src/nomad_measurements/ppms/schema.py index 1621e640..6505ef70 100644 --- a/src/nomad_measurements/ppms/schema.py +++ b/src/nomad_measurements/ppms/schema.py @@ -738,7 +738,7 @@ def normalize(self, archive, logger: BoundLogger) -> None: # noqa: PLR0912, PLR clean_key = clean_channel_keys(key) if hasattr(channel_1, clean_key): setattr(channel_1, clean_key, block[key]) - data.m_add_sub_section(ACTPPMSData.channels, channel_1) + data.m_add_sub_section(ETOPPMSData.channels, channel_1) channel_2_data = [ key for key in block.keys() if 'ch2' in key.lower() ]