Skip to content
Snippets Groups Projects
Commit dd49f892 authored by Charlotte Hausman's avatar Charlotte Hausman Committed by Sam Kagan
Browse files

verify pipeline picks up system area changes

parent 0c495ae4
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,7 @@ def natural_sort(in_list: list, reverse: bool = False) -> list:
Clever little function to perform natural sorting.
Example: l = ['RHEL7', 'RHEL8', 'RHEL9', 'RHEL20', 'RHEL11', 'RHEL10', 'RHEL6']
natural_sort(l) = ['RHEL20', 'RHEL11', 'RHEL10', 'RHEL9', 'RHEL8', 'RHEL7', 'RHEL6']
:param in_list: List to sort
:param reverse: True to reverse the output list
:return: A naturally sorted list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment