Fixed multiple spaces after operator

This commit is contained in:
Andrew Murray 2018-06-11 13:57:19 +10:00
parent ae9f62040d
commit bf29960283

View File

@ -384,4 +384,4 @@ def _color_diff(rgb1, rgb2):
""" """
Uses 1-norm distance to calculate difference between two rgb values. Uses 1-norm distance to calculate difference between two rgb values.
""" """
return abs(rgb1[0]-rgb2[0]) + abs(rgb1[1]-rgb2[1]) + abs(rgb1[2]-rgb2[2]) return abs(rgb1[0]-rgb2[0]) + abs(rgb1[1]-rgb2[1]) + abs(rgb1[2]-rgb2[2])