From 63d185a301b4a5647ac01ef8154cdb65db0e4ffe Mon Sep 17 00:00:00 2001
From: gifrerenom <lluis.gifre@cttc.es>
Date: Wed, 1 Feb 2023 13:36:10 +0000
Subject: [PATCH] PathComp component:

- silented warning
---
 .../frontend/service/algorithms/KDisjointPathAlgorithm.py       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pathcomp/frontend/service/algorithms/KDisjointPathAlgorithm.py b/src/pathcomp/frontend/service/algorithms/KDisjointPathAlgorithm.py
index 6a80fe698..f8021338e 100644
--- a/src/pathcomp/frontend/service/algorithms/KDisjointPathAlgorithm.py
+++ b/src/pathcomp/frontend/service/algorithms/KDisjointPathAlgorithm.py
@@ -141,7 +141,7 @@ class KDisjointPathAlgorithm(_Algorithm):
             _request = PathCompRequest()
             for service_key, service_details in self.services_details.items():
                 service_type, constraints, endpoints = service_details
-                _service = _request.services.add()
+                _service = _request.services.add()  # pylint: disable=no-member
                 _service.service_id.context_id.context_uuid.uuid = service_key[0]
                 _service.service_id.service_uuid.uuid = service_key[1]
                 _service.service_type = service_type
-- 
GitLab