From 977489ca28eed7052418773a1fd15f8baaadff86 Mon Sep 17 00:00:00 2001 From: Peter Cover Date: Thu, 23 Jan 2025 00:52:50 +0800 Subject: [PATCH] chore: remove redundant word (#10707) --- ibis/common/tests/test_patterns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/common/tests/test_patterns.py b/ibis/common/tests/test_patterns.py index 848837822a3d..1da7482f514a 100644 --- a/ibis/common/tests/test_patterns.py +++ b/ibis/common/tests/test_patterns.py @@ -663,7 +663,7 @@ class Empty: # if the type matcher (first argument of Object) receives a generic pattern # instead of an explicit type, the validation above cannot occur, so test - # the the pattern still doesn't match when it requires more positional + # the pattern still doesn't match when it requires more positional # arguments than the object `__match_args__` has pattern = Object(InstanceOf(Empty), var("a")) assert match(pattern, Empty()) is NoMatch