Skip to content

Commit

Permalink
Ignore type problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lucc committed Dec 16, 2024
1 parent 17a8681 commit 82e576f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_carddav_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ def test_dicts_are_keyed_by_the_first_key(self) -> None:

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

0 comments on commit 82e576f

Please sign in to comment.