Skip to content

Commit

Permalink
Fix incorrect key in TSGuess.from_dict()
Browse files Browse the repository at this point in the history
  • Loading branch information
alongd committed Jun 29, 2024
1 parent b09a96f commit a2e3dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/species/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,7 @@ def from_dict(self, ts_dict: dict):
else ts_dict['execution_time'] if 'execution_time' in ts_dict else None
self.method = ts_dict['method'].lower() if 'method' in ts_dict else 'user guess'
self.method_index = ts_dict['method_index'] if 'method_index' in ts_dict else None
self.method_direction = ts_dict['method_direction'] if 'method_index' in ts_dict else None
self.method_direction = ts_dict['method_direction'] if 'method_direction' in ts_dict else None
self.imaginary_freqs = ts_dict['imaginary_freqs'] if 'imaginary_freqs' in ts_dict else None
self.conformer_index = ts_dict['conformer_index'] if 'conformer_index' in ts_dict else None
self.successful_irc = ts_dict['successful_irc'] if 'successful_irc' in ts_dict else None
Expand Down

0 comments on commit a2e3dbb

Please sign in to comment.