(collection: "Collection")
| 95 | |
| 96 | |
| 97 | def print_task_names(collection: "Collection") -> None: |
| 98 | for name in sorted(collection.task_names, key=task_name_sort_key): |
| 99 | print(name) |
| 100 | # Just stick aliases after the thing they're aliased to. Sorting isn't |
| 101 | # so important that it's worth bending over backwards here. |
| 102 | for alias in collection.task_names[name]: |
| 103 | print(alias) |
| 104 | |
| 105 | |
| 106 | def print_completion_script(shell: str, names: List[str]) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…