Skip to content

Commit

Permalink
more normalization functions
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudz committed Jun 28, 2024
1 parent 8081ef8 commit 01853ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nomad_simulations/schema_packages/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ class WorkflowOutputs(Outputs):
# """,
# )

def normalize(self, archive, logger) -> None:
def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None:
super().normalize(archive, logger)


Expand All @@ -369,5 +369,5 @@ class TrajectoryOutputs(WorkflowOutputs):
""",
)

def normalize(self, archive, logger) -> None:
def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None:
super().normalize(archive, logger)

0 comments on commit 01853ae

Please sign in to comment.