Skip to content

Commit

Permalink
fix error loop through dict
Browse files Browse the repository at this point in the history
  • Loading branch information
schumannj committed Nov 25, 2024
1 parent f16704a commit 65a4a30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nomad_catalysis/schema_packages/catalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2101,9 +2101,9 @@ def reduce_haber_data(self, archive: 'EntryArchive', logger: 'BoundLogger') -> N
'Time': self.results[0].time_on_stream,
}
data_dict_no_ramps = {}
for key in data_dict:
for key, value in data_dict.items():
data_dict_no_ramps[key] = self.remove_ramps_from_data(
data_dict['Temp'], data_dict[key]
data_dict['Temp'], value
)

# getting the temperature values of each step
Expand Down

0 comments on commit 65a4a30

Please sign in to comment.