Skip to content

Commit

Permalink
fix spacing in rmg/pdep.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohnson541 committed Aug 2, 2019
1 parent 8ce12f2 commit 48f12c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rmgpy/rmg/pdep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 48f12c8

Please sign in to comment.