Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-usielski committed Jan 23, 2024
1 parent 6ae5f69 commit 0ba445d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moler/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def diff_data(first_object, second_object, significant_digits=None,
abs_tol = 1.0 / 10 ** significant_digits
if not isclose(first_object, second_object, abs_tol=abs_tol):
return "{} the first value {} is different from the second value" \
" {}.".format(msg, first_object, second_object)
" {}.".format(msg, first_object, second_object)
else:
if first_object != second_object:
return "{} First value {} is different from the second {}.".format(
Expand Down

0 comments on commit 0ba445d

Please sign in to comment.