Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Feb 12, 2021
1 parent a660c37 commit f47cfcf
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 @@ -456,7 +456,7 @@ def exec_task(task, variables, log=None):
variable_values[variable.id] = get_value_of_variable_model_xml_targets(variable, model_etrees)

new_value = calc_compute_model_change_new_value(change, variable_values=variable_values, range_values=current_range_values)
if new_value == int(new_value):
if new_value == int(new_value):
new_value = str(int(new_value))
else:
new_value = str(new_value)
Expand Down

0 comments on commit f47cfcf

Please sign in to comment.