Thanks to visit codestin.com Credit goes to github.com
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 678ea18 commit 17fd374Copy full SHA for 17fd374
1 file changed
mypy/util.py
@@ -525,7 +525,7 @@ def parse_gray_color(cup: bytes) -> str:
525
if sys.platform == "win32":
526
assert False, "curses is not available on Windows"
527
set_color = "".join([cup[:-1].decode(), "m"])
528
- gray = curses.tparm(set_color.encode("utf-8"), 1, 89).decode()
+ gray = curses.tparm(set_color.encode("utf-8"), 1, 9).decode()
529
return gray
530
531
0 commit comments