Skip to content

Commit

Permalink
Fixed bug: enable_cpr should be True by default.
Browse files Browse the repository at this point in the history
Bug was introduced in previous commit (2d4e7e8).
  • Loading branch information
jonathanslenders committed Sep 2, 2022
1 parent 2d4e7e8 commit 783d8a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prompt_toolkit/output/vt100.py
Expand Up @@ -420,7 +420,7 @@ def __init__(
term: Optional[str] = None,
default_color_depth: Optional[ColorDepth] = None,
enable_bell: bool = True,
enable_cpr: bool = False,
enable_cpr: bool = True,
) -> None:

assert all(hasattr(stdout, a) for a in ("write", "flush"))
Expand Down

0 comments on commit 783d8a9

Please sign in to comment.