From 954fdd5e8fae5935898e2e46c0a500c21f0e11dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Wed, 8 Jul 2020 16:20:47 +0200 Subject: [PATCH] style: Fix 'noqa' for flake8 3.8.0 There was a change in behavior of E402, see: https://gitlab.com/pycqa/flake8/-/issues/638#note_345108633 --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 903b1f7..c651cf9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,9 +6,9 @@ import sys import os from unittest.mock import MagicMock -sys.path.insert(0, os.path.abspath('..')) # noqa +sys.path.insert(0, os.path.abspath('..')) -from yamllint import __copyright__, APP_NAME, APP_VERSION +from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa # -- General configuration ------------------------------------------------