Skip to content

Commit

Permalink
fix: include p-z in _is_single_cell_widths regex
Browse files Browse the repository at this point in the history
  • Loading branch information
TomJGooding committed Oct 22, 2024
1 parent 0f2f51b commit 250127d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rich/cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ._cell_widths import CELL_WIDTHS

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


@lru_cache(4096)
Expand Down

0 comments on commit 250127d

Please sign in to comment.