Skip to content

Commit 980f8d6

Browse files
committed
test: fix a typing issue
1 parent 1dc89b9 commit 980f8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_attribute_value_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,4 +355,4 @@ def test_delitem(items: AVL, to_delete, expected: list[int]):
355355

356356
def test_delitem_invalid_index(items: AVL):
357357
with raises(IndexError, match="valid indices"):
358-
del items[RuntimeError]
358+
del items[RuntimeError] # type: ignore

0 commit comments

Comments
 (0)