From b988867bcd64aef1b285b3de9ac4d903ebbfba4c Mon Sep 17 00:00:00 2001 From: JosePizarro3 Date: Thu, 27 Jun 2024 11:48:25 +0200 Subject: [PATCH] Added missing normalize method to BaseModelMethod --- src/nomad_simulations/schema_packages/model_method.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nomad_simulations/schema_packages/model_method.py b/src/nomad_simulations/schema_packages/model_method.py index cb93d307..b8dd97ab 100644 --- a/src/nomad_simulations/schema_packages/model_method.py +++ b/src/nomad_simulations/schema_packages/model_method.py @@ -88,6 +88,9 @@ class BaseModelMethod(ArchiveSection): numerical_settings = SubSection(sub_section=NumericalSettings.m_def, repeats=True) + def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: + super().normalize(archive, logger) + class ModelMethod(BaseModelMethod): """