(self, command, current_word, argv)
| 103 | self.config = config |
| 104 | |
| 105 | def __autocomplete__(self, command, current_word, argv): |
| 106 | # pylint: disable=unused-variable,unused-argument, |
| 107 | # attribute-defined-outside-init |
| 108 | return ("default", []) |
| 109 | |
| 110 | def __autocomplete_base__(self, current_word, argv): |
| 111 | option = "default" |
no outgoing calls
no test coverage detected