@@ -429,14 +429,14 @@ def test_bound_less_than_or_equal_invert(table_schema_simple: Schema) -> None:
429429
430430def test_not_equal_to_invert () -> None :
431431 bound = NotEqualTo (
432- term = BoundReference ( # type: ignore
432+ term = BoundReference (
433433 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
434434 accessor = Accessor (position = 0 , inner = None ),
435435 ),
436436 literal = "hello" ,
437437 )
438438 assert ~ bound == EqualTo (
439- term = BoundReference ( # type: ignore
439+ term = BoundReference (
440440 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
441441 accessor = Accessor (position = 0 , inner = None ),
442442 ),
@@ -446,14 +446,14 @@ def test_not_equal_to_invert() -> None:
446446
447447def test_greater_than_or_equal_invert () -> None :
448448 bound = GreaterThanOrEqual (
449- term = BoundReference ( # type: ignore
449+ term = BoundReference (
450450 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
451451 accessor = Accessor (position = 0 , inner = None ),
452452 ),
453453 literal = "hello" ,
454454 )
455455 assert ~ bound == LessThan (
456- term = BoundReference ( # type: ignore
456+ term = BoundReference (
457457 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
458458 accessor = Accessor (position = 0 , inner = None ),
459459 ),
@@ -463,14 +463,14 @@ def test_greater_than_or_equal_invert() -> None:
463463
464464def test_less_than_or_equal_invert () -> None :
465465 bound = LessThanOrEqual (
466- term = BoundReference ( # type: ignore
466+ term = BoundReference (
467467 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
468468 accessor = Accessor (position = 0 , inner = None ),
469469 ),
470470 literal = "hello" ,
471471 )
472472 assert ~ bound == GreaterThan (
473- term = BoundReference ( # type: ignore
473+ term = BoundReference (
474474 field = NestedField (field_id = 1 , name = "foo" , field_type = StringType (), required = False ),
475475 accessor = Accessor (position = 0 , inner = None ),
476476 ),
0 commit comments