Skip to content

Commit 6071531

Browse files
committed
Update attribute name in a comment.
Must be left over from the PEP8-ify project.
1 parent 409b39d commit 6071531

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rmgpy/rmg/model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ def add_seed_mechanism_to_core(self, seed_mechanism, react=False):
16081608
kinetics=rxn.kinetics, duplicate=rxn.duplicate,
16091609
reversible=rxn.reversible
16101610
)
1611-
r, isNew = self.make_new_reaction(rxn) # updates self.new_species_list and self.newReactionlist
1611+
r, isNew = self.make_new_reaction(rxn) # updates self.new_species_list and self.new_reaction_list
16121612
if getattr(r.kinetics, 'coverage_dependence', None):
16131613
self.process_coverage_dependence(r.kinetics)
16141614
if not isNew:
@@ -1712,8 +1712,8 @@ def add_reaction_library_to_edge(self, reaction_library):
17121712
kinetics=rxn.kinetics, duplicate=rxn.duplicate,
17131713
reversible=rxn.reversible
17141714
)
1715-
r, isNew = self.make_new_reaction(rxn) # updates self.new_species_list and self.newReactionlist
17161715
if r and getattr(r.kinetics, 'coverage_dependence', None):
1716+
r, isNew = self.make_new_reaction(rxn) # updates self.new_species_list and self.new_reaction_list
17171717
self.process_coverage_dependence(r.kinetics)
17181718
if not isNew:
17191719
logging.info("This library reaction was not new: {0}".format(rxn))

0 commit comments

Comments
 (0)