From 04db8c2946373fdd3249cb2a6889481a43305aed Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 22 Oct 2024 16:23:41 +0100 Subject: [PATCH] update regex --- rich/cells.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rich/cells.py b/rich/cells.py index 4debea0ca..17793eb5e 100644 --- a/rich/cells.py +++ b/rich/cells.py @@ -8,7 +8,7 @@ # Regex to match sequence of the most common character ranges _is_single_cell_widths = re.compile( - "^[\u0020-\u007e\u00a0\u02ff\u0370-\u0482\u2500-\u25FF]*$" + "^[\u0020-\u007e\u00a0-\u02ff\u0370-\u0482\u2500-\u25FF]*$" ).match