From ffdfa1afca211d78fb6d4c0ff006ae91d0c62077 Mon Sep 17 00:00:00 2001 From: jrudz Date: Wed, 3 Jul 2024 14:22:17 +0200 Subject: [PATCH] ruff --- src/nomad_simulations/schema_packages/properties/forces.py | 2 +- .../schema_packages/properties/thermodynamics.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nomad_simulations/schema_packages/properties/forces.py b/src/nomad_simulations/schema_packages/properties/forces.py index f60d1c94..ddbc83c5 100644 --- a/src/nomad_simulations/schema_packages/properties/forces.py +++ b/src/nomad_simulations/schema_packages/properties/forces.py @@ -37,6 +37,7 @@ # Abstract classes ################## + class BaseForce(PhysicalProperty): """ Abstract class used to define a common `value` quantity with the appropriate units @@ -97,4 +98,3 @@ def __init__( def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: super().normalize(archive, logger) - diff --git a/src/nomad_simulations/schema_packages/properties/thermodynamics.py b/src/nomad_simulations/schema_packages/properties/thermodynamics.py index fb33ac9b..738e2e39 100644 --- a/src/nomad_simulations/schema_packages/properties/thermodynamics.py +++ b/src/nomad_simulations/schema_packages/properties/thermodynamics.py @@ -59,6 +59,7 @@ class Volume(PhysicalProperty): """ the amount of three-dimensional space that a substance or material occupies. """ + #! Above description suggested for taxonomy # TODO check back on definition after first taxonomy version