Example of a custom completer, which could be dynamic
(**kwargs)
| 78 | |
| 79 | |
| 80 | def _indent_completions(**kwargs): |
| 81 | """Example of a custom completer, which could be dynamic""" |
| 82 | return ["2", "4", "8"] |
| 83 | |
| 84 | |
| 85 | class JsonPrinter(Configurable): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…