From 48f12c8a2fd56f99a460a1ef05fff8583be06005 Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Fri, 19 Jul 2019 14:24:21 -0400 Subject: [PATCH] fix spacing in rmg/pdep.py --- rmgpy/rmg/pdep.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rmgpy/rmg/pdep.py b/rmgpy/rmg/pdep.py index be9e562d45..3363fb0b56 100644 --- a/rmgpy/rmg/pdep.py +++ b/rmgpy/rmg/pdep.py @@ -322,7 +322,7 @@ def addPathReaction(self, newReaction): self.pathReactions.append(newReaction) self.invalidate() - def get_energy_filtered_reactions(self,T,tol): + def get_energy_filtered_reactions(self, T, tol): """ Returns a list of products and isomers that are greater in Free Energy than a*R*T + Gfsource(T) @@ -354,7 +354,7 @@ def get_energy_filtered_reactions(self,T,tol): return filtered_rxns - def get_rate_filtered_products(self,T,P,tol): + def get_rate_filtered_products(self, T, P, tol): """ determines the set of pathReactions that have fluxes less than tol at steady state where all A => B + C reactions are irreversible @@ -390,7 +390,7 @@ def get_rate_filtered_products(self,T,P,tol): return filtered_prod - def solve_SS_network(self,T,P): + def solve_SS_network(self, T, P): """ calculates the steady state concentrations if all A => B + C reactions are irreversible and the flux from/to the source @@ -532,7 +532,7 @@ def remove_disconnected_reactions(self): self.Nreac = len(self.reactants) self.Nprod = len(self.products) - def remove_reactions(self,reactionModel,rxns=None,prods=None): + def remove_reactions(self, reactionModel, rxns=None, prods=None): """ removes a list of reactions from the network and all reactions/products left disconnected by removing those reactions