(self, cli=None)
| 7 | class MyPrompt(Prompts): |
| 8 | |
| 9 | def in_prompt_tokens(self, cli=None): |
| 10 | return [(Token, os.getcwd()), |
| 11 | (Token.Prompt, '>>>')] |
| 12 | |
| 13 | def load_ipython_extension(shell): |
| 14 | new_prompts = MyPrompt(shell) |
nothing calls this directly
no outgoing calls
no test coverage detected