Returns the text of the completion script for a Fire CLI.
(name, component, shell)
| 170 | |
| 171 | |
| 172 | def CompletionScript(name, component, shell): |
| 173 | """Returns the text of the completion script for a Fire CLI.""" |
| 174 | return completion.Script(name, component, shell=shell) |
| 175 | |
| 176 | |
| 177 | class FireError(Exception): |