1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-14 07:55:05 +00:00

jc filter: remove redundant noqa comment (#10643)

This commit is contained in:
Alexei Znamensky 2025-08-11 21:56:49 +12:00 committed by GitHub
parent 993e3a736e
commit 2aa53706f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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