Skip to content

Commit 47271c7

Browse files
committed
Deleted spaces
1 parent 70afba6 commit 47271c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • is-unicode-supported/src/is_unicode_supported

is-unicode-supported/src/is_unicode_supported/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def is_unicode_supported() -> bool:
99
with terminal.cbreak(), terminal.hidden_cursor(): # measure rendered width of wide CJK char
1010
r,g,b = terminal.get_bgcolor()
1111
if (r,g,b) == (-1,-1,-1) : (r,g,b) = (0,0,0) # get bg failed, init to black
12-
sys.stdout.write(terminal.color_rgb(r, g, b)) # make text invisible
12+
sys.stdout.write(terminal.color_rgb(r,g,b)) # make text invisible
1313
_, x1 = terminal.get_location()
1414
sys.stdout.write('𠀀')
1515
sys.stdout.flush()

0 commit comments

Comments
 (0)