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.
is_legacy_terminal
1 parent b00dfa4 commit 71fcfb8Copy full SHA for 71fcfb8
1 file changed
is-unicode-supported/src/is_unicode_supported/api.py
@@ -6,7 +6,7 @@ def is_unicode_supported() -> bool:
6
if hasattr(is_unicode_supported, '_cached'):
7
return is_unicode_supported._cached
8
9
- if not is_legacy_terminal(): # type: ignore
+ if is_legacy_terminal(): # type: ignore
10
is_unicode_supported._cached = False
11
return False # legacy terminals don't suport wide chars
12
0 commit comments