Skip to content

Commit

Permalink
fix: get_inventory_nodes return matches doch
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinWeiss committed Jun 21, 2024
1 parent 4bfef41 commit 52eda2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/inet_nm/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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()
Expand Down

0 comments on commit 52eda2f

Please sign in to comment.