(self, things=())
| 140 | |
| 141 | class KeyCompletable: |
| 142 | def __init__(self, things=()): |
| 143 | self.things = things |
| 144 | |
| 145 | def _ipython_key_completions_(self): |
| 146 | return list(self.things) |
nothing calls this directly
no outgoing calls
no test coverage detected