Skip to content

Commit

Permalink
Merge pull request #22 from inetrg/pr/fix/getinventorynodes
Browse files Browse the repository at this point in the history
fix: get_inventory_nodes return matches doch
  • Loading branch information
MrKevinWeiss authored Jun 21, 2024
2 parents 4bfef41 + 52eda2f commit 9264caf
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 9264caf

Please sign in to comment.