mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
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:
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user