Skip to content

Commit

Permalink
chore: aligning with API convention
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Sep 2, 2021
1 parent 2d146ee commit 527659e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion biosimulators_tellurium/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
'exec_sedml_docs_in_combine_archive',
'exec_sed_doc',
'exec_sed_task',
'preprocess_sed_task',
]


Expand Down Expand Up @@ -223,7 +224,7 @@ def exec_sed_task(task, variables, preprocessed_task=None, log=None, config=None
if config.LOG and not log:
log = TaskLog()

if not preprocessed_task:
if preprocessed_task is None:
preprocessed_task = preprocess_sed_task(task, variables, config=config, simulator_config=simulator_config)

model = task.model
Expand Down

0 comments on commit 527659e

Please sign in to comment.