Skip to content

Commit 250127d

Browse files
committed
fix: include p-z in _is_single_cell_widths regex
1 parent 0f2f51b commit 250127d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rich/cells.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from ._cell_widths import CELL_WIDTHS
88

99
# Regex to match sequence of the most common character ranges
10-
_is_single_cell_widths = re.compile("^[\u0020-\u006f\u00a0\u02ff\u0370-\u0482]*$").match
10+
_is_single_cell_widths = re.compile("^[\u0020-\u007A\u00a0\u02ff\u0370-\u0482]*$").match
1111

1212

1313
@lru_cache(4096)

0 commit comments

Comments
 (0)