We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a8681 commit 82e576fCopy full SHA for 82e576f
test/test_carddav_object.py
@@ -80,5 +80,5 @@ def test_dicts_are_keyed_by_the_first_key(self) -> None:
80
81
def test_all_strings_are_sorted_before_dicts(self) -> None:
82
my_list = ["a", {"c": "d"}, "e", {"f": "g"}]
83
- my_list.sort(key=multi_property_key)
+ my_list.sort(key=multi_property_key) # type: ignore[arg-type]
84
self.assertEqual(my_list, ["a", "e", {"c": "d"}, {"f": "g"}])
0 commit comments