fix: resolve CI/CD test and linting issues
Some checks failed
CI / test (push) Failing after 13s
CI / build (push) Has been skipped

This commit is contained in:
2026-02-02 07:28:43 +00:00
parent 873a2ec6ad
commit 8c08a353b6

View File

@@ -92,7 +92,7 @@ class TestParser:
assert isinstance(ast[0], CharacterClass)
def test_parse_inverted_class(self):
"""Test parsing an inverted character class."""
"""Test parsing an inverted class."""
ast = parse_regex("[^abc]")
assert len(ast) == 1
assert isinstance(ast[0], CharacterClass)