Skip to content

Commit

Permalink
Lint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Jul 27, 2023
1 parent 8996035 commit c66519e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biosimulators_utils/sedml/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def exec_task(task, variables, preprocessed_task=None, log=None, config=None, **
try:
value = get_value_executer(change.model, variable, preprocessed_task)
variable_values[variable.id] = value
except:
except Exception:

Check warning on line 543 in biosimulators_utils/sedml/exec.py

View check run for this annotation

Codecov / codecov/patch

biosimulators_utils/sedml/exec.py#L540-L543

Added lines #L540 - L543 were not covered by tests
# Even if the above fails, getting the value from the XML directly might be possible.
pass

Check warning on line 545 in biosimulators_utils/sedml/exec.py

View check run for this annotation

Codecov / codecov/patch

biosimulators_utils/sedml/exec.py#L545

Added line #L545 was not covered by tests
if variable.id not in variable_values:
Expand Down

0 comments on commit c66519e

Please sign in to comment.