utils: raspberrypi: ctt: Fix pycodestyle E251

E251 unexpected spaces around keyword / parameter equals

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
This commit is contained in:
Laurent Pinchart 2020-05-02 03:32:00 +03:00
parent 6eb1bce9c7
commit 965cae72a7
6 changed files with 9 additions and 9 deletions

View file

@ -487,8 +487,8 @@ def get_macbeth_chart(img, ref_data):
"""
clustering = cluster.AgglomerativeClustering(
n_clusters=None,
compute_full_tree = True,
distance_threshold = side*2
compute_full_tree=True,
distance_threshold=side*2
)
mac_mids_list = [x[0] for x in mac_mids]