We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57172d2 commit 4a7aba7Copy full SHA for 4a7aba7
README.md
@@ -76,12 +76,12 @@ def configure(repl: PythonRepl) -> None:
76
`~/.ipython/profile_default/ipython_config.py`:
77
78
```python
79
-from IPython.terminal.prompts import ClassicPrompts
80
from repl_python_wakatime.backends.wakatime import Wakatime
81
from repl_python_wakatime.frontends.ipython import Ipython
82
83
c.TerminalInteractiveShell.prompts_class = lambda *args, **kwargs: Ipython(
84
- Wakatime(), ClassicPrompts(*args, **kwargs)
+ Wakatime(),
+ c.TerminalInteractiveShell.prompts_class(*args, **kwargs),
85
)
86
```
87
0 commit comments