Skip to content

Commit b5926c9

Browse files
committed
Fixup mypy issue in tests
1 parent 37080af commit b5926c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def test_from_json_dense_e(self) -> None:
265265
assert metric.stepsize == 0.3
266266
assert metric.metric_type == "dense_e"
267267
assert len(metric.inv_metric) == 2
268-
assert len(metric.inv_metric[0]) == 2
268+
assert len(metric.inv_metric[0]) == 2 # type: ignore
269269
finally:
270270
Path(temp_path).unlink()
271271

0 commit comments

Comments
 (0)