Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Jan 27, 2021
1 parent 3b5399d commit f5b4b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/ECNQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ def getQueueCounts() -> list:
validItems = [isValidItemName for file in possibleItems]
queueInfo.append( {"name": queue, "number_of_items": len(validItems)} )

# Sorts queueinfo alphabetically using the lambda function
# Sorts list of queue info alphabetically
sortedQueueInfo = sorted(queueInfo, key = lambda queueInfoList: queueInfoList['name'])

return sortedQueueInfo
Expand Down

0 comments on commit f5b4b1e

Please sign in to comment.