Skip to content

Commit 9f83bf5

Browse files
committed
fix
1 parent 4c43ad2 commit 9f83bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

khard/carddav_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ def _get_private_objects(self) -> Dict[str, List[Union[str, Dict[str, str]]]]:
921921
{ablabel: child.value} if ablabel else child.value)
922922
# sort private object lists
923923
for value in private_objects.values():
924-
value.sort(key=multi_property_key) # type: ignore[reportArgumentType]
924+
value.sort(key=multi_property_key) # type: ignore[arg-type]
925925
return private_objects
926926

927927
def _add_private_object(self, key: str, value: str) -> None:

0 commit comments

Comments
 (0)