(help_command, **kwargs)
| 67 | |
| 68 | |
| 69 | def _add_docs(help_command, **kwargs): |
| 70 | doc = help_command.doc |
| 71 | doc.style.new_paragraph() |
| 72 | doc.style.start_note() |
| 73 | msg = ( |
| 74 | 'To specify multiple rules in a single command ' |
| 75 | 'use the <code>--ip-permissions</code> option' |
| 76 | ) |
| 77 | doc.include_doc_string(msg) |
| 78 | doc.style.end_note() |
| 79 | |
| 80 | |
| 81 | EVENTS = [ |
nothing calls this directly
no test coverage detected