Skip to content

Commit 82e576f

Browse files
committed
Ignore type problem
1 parent 17a8681 commit 82e576f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_carddav_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ def test_dicts_are_keyed_by_the_first_key(self) -> None:
8080

8181
def test_all_strings_are_sorted_before_dicts(self) -> None:
8282
my_list = ["a", {"c": "d"}, "e", {"f": "g"}]
83-
my_list.sort(key=multi_property_key)
83+
my_list.sort(key=multi_property_key) # type: ignore[arg-type]
8484
self.assertEqual(my_list, ["a", "e", {"c": "d"}, {"f": "g"}])

0 commit comments

Comments
 (0)