From 99fb29aead7940470938fddb35f80300dfe18d69 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 6 Jul 2024 09:44:56 +0200 Subject: [PATCH] build: remove unused `noqa` --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 8a03b2fb..08e24aaf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -6,7 +6,7 @@ from unittest.mock import MagicMock sys.path.insert(0, os.path.abspath('..')) -from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa: I001, E402 +from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa: E402 # -- General configuration ------------------------------------------------