(help_message, path)
| 27 | |
| 28 | |
| 29 | def append_doc_link(help_message, path): |
| 30 | from dvc.utils import format_link |
| 31 | |
| 32 | if not path: |
| 33 | return help_message |
| 34 | doc_base = "https://man.dvc.org/" |
| 35 | return f"{help_message}\nDocumentation: {format_link(doc_base + path)}" |
| 36 | |
| 37 | |
| 38 | def hide_subparsers_from_help(subparsers): |
no test coverage detected