Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
Prevent a long line warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
lamby committed Feb 27, 2018
1 parent 5adfa45 commit 5ee05d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prediction/src/tests/test_segment_evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ def test_segment_evaluate_evaluate(masks):
calculated = evaluate.evaluate(combined_1, combined_2)

for key, output in desired_behaviour.items():
assert np.abs(output - calculated[key]) < 1e-4, 'The output of function {} is {}, while {} was expected.'.format(
assert np.abs(output - calculated[key]) < 1e-4, 'The output of function {} is {} while {} was expected.'.format(
key, calculated, output)

0 comments on commit 5ee05d3

Please sign in to comment.