Skip to content

Commit

Permalink
fix Rule rate typehint (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
FFroehlich committed Dec 16, 2020
1 parent c434f6a commit 8959fe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysb/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1399,9 +1399,9 @@ class Rule(Component):
rule_expression : RuleExpression
RuleExpression containing the essence of the rule (reactants, products,
reversibility).
rate_forward : Parameter
rate_forward : Union[Parameter,Expression]
Forward reaction rate constant.
rate_reverse : Parameter, optional
rate_reverse : Union[Parameter,Expression], optional
Reverse reaction rate constant (only required for reversible rules).
delete_molecules : bool, optional
If True, deleting a Monomer from a species is allowed to fragment the
Expand Down

0 comments on commit 8959fe0

Please sign in to comment.