diff --git a/scenes/utils.py b/scenes/utils.py
index 40dd1730ad05d464796466355e076ff2616ecd52..1a88dab266eeb039440d01dbbe827004a6b5193e 100644
--- a/scenes/utils.py
+++ b/scenes/utils.py
@@ -198,7 +198,7 @@ def get_bbox_wgs84_from_vector(vector_file):
     coords = [(extent[0], extent[2]), (extent[1], extent[3])]
     src_srs = poly_layer.GetSpatialRef()
     tgt_srs = epsg2srs(4326)
-    [(xmin, ymin), (xmax, ymax)] = reproject_coords(coords=coords, # pylint: disable=unbalanced-tuple-unpacking
+    [(xmin, ymin), (xmax, ymax)] = reproject_coords(coords=coords,  # pylint: disable=unbalanced-tuple-unpacking
                                                     src_srs=src_srs,
                                                     tgt_srs=tgt_srs)
     return xmin, xmax, ymin, ymax