From 2aa53706f50e1dc122c11385d9ac1f66579390b4 Mon Sep 17 00:00:00 2001 From: Alexei Znamensky <103110+russoz@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:56:49 +1200 Subject: [PATCH] jc filter: remove redundant noqa comment (#10643) --- plugins/filter/jc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/filter/jc.py b/plugins/filter/jc.py index 6a2feb93f0..d88b5e0b5b 100644 --- a/plugins/filter/jc.py +++ b/plugins/filter/jc.py @@ -79,7 +79,7 @@ from ansible.errors import AnsibleError, AnsibleFilterError import importlib try: - import jc # noqa: F401, pylint: disable=unused-import + import jc HAS_LIB = True except ImportError: HAS_LIB = False