Skip to content

Commit

Permalink
fixed rebase mistakes in output.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudz committed Apr 11, 2024
1 parent cc82d14 commit 03f5bd8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/nomad_simulations/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,16 @@
from structlog.stdlib import BoundLogger
from typing import Optional

from nomad.units import ureg
from nomad.datamodel.data import ArchiveSection
from nomad.metainfo import Quantity, SubSection, MEnum, Section, Context
from nomad.datamodel.metainfo.annotations import ELNAnnotation
from nomad.metainfo import Quantity, SubSection
# ? are we planning to enforce a dependency on simulationworkflowschema?
from simulationworkflowschema import SimulationWorkflow

from .model_system import ModelSystem
from .physical_property import PhysicalProperty
from .numerical_settings import SelfConsistency
from .physical_property import PhysicalProperty

# ? are we planning to enforce a dependency on simulationworkflowschema?
from simulationworkflowschema import SimulationWorkflow

class ElectronicBandGap(PhysicalProperty):
""" """
Expand Down Expand Up @@ -64,7 +61,7 @@ def normalize(self, archive, logger) -> None:
super().normalize(archive, logger)


class Outputs(PhysicalProperty):
class Outputs(ArchiveSection):
"""
Output properties of a simulation. This base class can be used for inheritance in any of the output properties
defined in this schema.
Expand Down

0 comments on commit 03f5bd8

Please sign in to comment.