diff --git a/src/imio/directory/core/contents/contact/view.py b/src/imio/directory/core/contents/contact/view.py index ccb8b21..c2bb6e2 100644 --- a/src/imio/directory/core/contents/contact/view.py +++ b/src/imio/directory/core/contents/contact/view.py @@ -24,5 +24,5 @@ def images(self): rows = [] for i in range(0, len(images)): if i % self.GALLERY_IMAGES_NUMBER == 0: - rows.append(images[i:i + self.GALLERY_IMAGES_NUMBER]) + rows.append(images[i : i + self.GALLERY_IMAGES_NUMBER]) # NOQA return rows