Skip to content

Commit

Permalink
Merge pull request #52 from ReactionMechanismGenerator/irc_fixup
Browse files Browse the repository at this point in the history
Addressed a Typo in IRC validation
  • Loading branch information
Nate Harms authored Jan 6, 2020
2 parents 25067c7 + 951b4ee commit 9c23395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autotst/calculator/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,11 @@ def validate_irc(self):
products = []

for react in r.split("+"):
react = RMGMolecule(SMILES=react)
react = RMGMolecule(smiles=react)
reactants.append(react)

for prod in p.split("+"):
prod = RMGMolecule(SMILES=prod)
prod = RMGMolecule(smiles=prod)
products.append(prod)

possible_reactants = []
Expand Down

0 comments on commit 9c23395

Please sign in to comment.