Skip to content

Commit 53ad383

Browse files
committed
Fixed pylint issues in the roles config
1 parent 69ed38a commit 53ad383

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

common/library/module_utils/input_validation/validation_flows/roles_validation.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14+
# pylint: disable=unused-argument,too-many-locals,too-many-branches
15+
"""
16+
This module contains functions for validating roles configuration.
17+
"""
1418

1519
import json
1620
import ipaddress
@@ -297,7 +301,8 @@ def validate_roles_config(
297301
switch_ip_port_mapping = {}
298302
static_range_mapping = {}
299303
# # Check if the bmc_network is defined
300-
# bmc_network_defined = check_bmc_network(input_file_path, logger, module, omnia_base_dir, project_name)
304+
# bmc_network_defined = check_bmc_network(
305+
# input_file_path, logger, module, omnia_base_dir, project_name)
301306

302307
for role in roles:
303308
# Check role-group association, all roles must have a group

0 commit comments

Comments
 (0)