Skip to content

Commit bad9859

Browse files
committed
fix: remove type hinting errors
1 parent 2092a0b commit bad9859

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/expressions/test_evaluator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def data_file_nan() -> DataFile:
683683

684684

685685
def test_inclusive_metrics_evaluator_less_than_and_less_than_equal(schema_data_file_nan: Schema, data_file_nan: DataFile) -> None:
686-
for operator in [LessThan, LessThanOrEqual]: # type: ignore
686+
for operator in [LessThan, LessThanOrEqual]:
687687
should_read = _InclusiveMetricsEvaluator(schema_data_file_nan, operator("all_nan", 1)).eval(data_file_nan) # type: ignore[arg-type]
688688
assert not should_read, "Should not match: all nan column doesn't contain number"
689689

@@ -711,7 +711,7 @@ def test_inclusive_metrics_evaluator_less_than_and_less_than_equal(schema_data_f
711711
def test_inclusive_metrics_evaluator_greater_than_and_greater_than_equal(
712712
schema_data_file_nan: Schema, data_file_nan: DataFile
713713
) -> None:
714-
for operator in [GreaterThan, GreaterThanOrEqual]: # type: ignore
714+
for operator in [GreaterThan, GreaterThanOrEqual]:
715715
should_read = _InclusiveMetricsEvaluator(schema_data_file_nan, operator("all_nan", 1)).eval(data_file_nan) # type: ignore[arg-type]
716716
assert not should_read, "Should not match: all nan column doesn't contain number"
717717

0 commit comments

Comments
 (0)