From f22220ca2aec4994ac0e6a1110006bd0b804a0e5 Mon Sep 17 00:00:00 2001 From: Raymond Kuiper Date: Thu, 19 Dec 2024 14:53:45 +0100 Subject: [PATCH] :adhesive_bandage: disable pylint error on arguments --- modules/hostgroups.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/hostgroups.py b/modules/hostgroups.py index db5a996..eb08c01 100644 --- a/modules/hostgroups.py +++ b/modules/hostgroups.py @@ -6,6 +6,7 @@ from modules.tools import build_path class Hostgroup(): """Hostgroup class for devices and VM's Takes type (vm or dev) and NB object""" + #pylint: disable=too-many-arguments def __init__(self, obj_type, nb_obj, version, logger=None, nested_sitegroup_flag=False, nested_region_flag=False, nb_regions=None, nb_groups=None):