From 52eda2f651475c2ab5e7059f34827e80dbae2ffa Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Fri, 21 Jun 2024 17:07:36 +0200 Subject: [PATCH] fix: get_inventory_nodes return matches doch --- src/inet_nm/check.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/inet_nm/check.py b/src/inet_nm/check.py index 82c397d..b1f9207 100644 --- a/src/inet_nm/check.py +++ b/src/inet_nm/check.py @@ -277,7 +277,7 @@ def get_inventory_nodes( feat_eval: str = None, boards: List[str] = None, uids: List[str] = None, -) -> Tuple[List[NmNode], List[NmNode], List[NmNode]]: +) -> Tuple[List[NmNode], List[NmNode], List[NmNode], List[NmNode]]: """ Get a list of nodes based on the provided parameters. @@ -291,8 +291,8 @@ def get_inventory_nodes( Returns: A tuple of lists of nodes. The first list is the available nodes, the - second list is the used nodes, and the third list is the missing - nodes. + second list is the used nodes, the third list is the missing + nodes, the forth is the total node count. """ kwargs = locals()