[ruff] Fix ambiguous characters found in string and comment

This commit is contained in:
Pierre Sassoulas
2024-02-02 15:07:29 +01:00
parent 514376fe29
commit 180a16a344
4 changed files with 3 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ import pytest
("\u1ABE", 0),
("\u0591", 0),
("🉐", 2),
("", 2),
("", 2), # noqa: RUF001
],
)
def test_wcwidth(c: str, expected: int) -> None: