From e28476d74bbb05d35cdb691d3b5808df16cb9bd6 Mon Sep 17 00:00:00 2001 From: Christophe Boulanger Date: Thu, 20 May 2021 12:18:22 +0200 Subject: [PATCH] blacked file and add noqa noqa issue : https://github.com/PyCQA/pycodestyle/issues/373 --- src/imio/directory/core/contents/contact/view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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