pylint: Fix pylint 3.3.8 issues

With the latest pylint version, an issue is raised by inheriting from
BaseInventoryPlugin, as the class has too many ancestors
(too-many-ancestors). This is caused by a class hierarchy that is too
deep, and is not under ansible-freeipa's control.
This commit is contained in:
Rafael Guterres Jeffman
2025-08-15 16:09:24 -03:00
parent a1cad32a46
commit fdd45cc475

View File

@@ -107,7 +107,7 @@ from ansible.plugins.inventory import BaseInventoryPlugin
from ansible.module_utils.six.moves.urllib.parse import quote
class InventoryModule(BaseInventoryPlugin):
class InventoryModule(BaseInventoryPlugin): # pylint: disable=R0901
NAME = 'freeipa'