Skip to content

Commit 538ecfa

Browse files
author
Andrei Neagu
committed
pylint
1 parent 7af6355 commit 538ecfa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/models-library/src/models_library/service_settings_labels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def _not_allowed_in_both_specs(self):
471471
return self
472472

473473
common_containers = set(self.containers_allowed_outgoing_internet) & set(
474-
self.containers_allowed_outgoing_permit_list.keys()
474+
self.containers_allowed_outgoing_permit_list.keys() # pylint:disable=no-member
475475
)
476476
if len(common_containers) > 0:
477477
err_msg = (

packages/models-library/tests/test_project_nodes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# pylint:disable=unused-variable
22
# pylint:disable=unused-argument
33
# pylint:disable=redefined-outer-name
4+
# pylint:disable=no-member
45

56
from typing import Any
67

0 commit comments

Comments
 (0)