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 13f87a4 commit 454fcfcCopy full SHA for 454fcfc
1 file changed
rich/cells.py
@@ -69,7 +69,7 @@ def get_character_cell_size(character: str, unicode_version: str = "auto") -> in
69
upper_bound = len(table) - 1
70
71
while lower_bound <= upper_bound:
72
- index = (lower_bound + upper_bound) >> 1 # Faster than // 2
+ index = (lower_bound + upper_bound) >> 1
73
entry = table[index]
74
start = entry[0]
75
0 commit comments