Skip to content

Commit

Permalink
Fix default argument for optional 'model' parameter in 'petab.lint.ch…
Browse files Browse the repository at this point in the history
…eck_condition_df'

#477
  • Loading branch information
dweindl committed Nov 9, 2020
1 parent 5b4350c commit b89dfd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion petab/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def assert_no_leading_trailing_whitespace(


def check_condition_df(
df: pd.DataFrame, sbml_model: Optional[libsbml.Model]) -> None:
df: pd.DataFrame, sbml_model: Optional[libsbml.Model] = None) -> None:
"""Run sanity checks on PEtab condition table
Arguments:
Expand Down

0 comments on commit b89dfd9

Please sign in to comment.