Open 2sn opened 6 years ago
Hi @2sn,
The values for color depth are coming from this enumeration: https://github.com/jonathanslenders/python-prompt-toolkit/blob/master/prompt_toolkit/output/color_depth.py#L10
prompt('>', color_depth='DEPTH_24_BIT')
However, it's good to know that you were thinking about passing an integer. That makes sense actually, so maybe this is something we have to support.
following https://python-prompt-toolkit.readthedocs.io/en/2.0.5/pages/asking_for_input.html the line
does not know about the
true_color
keyword. Also, when I usecolor_depth=24
instead, my ipython session dies.