Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions stubs/vobject/vobject/vcard.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ class Name:
additional: Incomplete
prefix: Incomplete
suffix: Incomplete
def __init__(self, family: str = "", given: str = "", additional: str = "", prefix: str = "", suffix: str = "") -> None: ...
def __init__(
self,
family: str | list[str] = "",
given: str | list[str] = "",
additional: str | list[str] = "",
prefix: str | list[str] = "",
suffix: str | list[str] = "",
) -> None: ...
@staticmethod
def toString(val): ...
def __eq__(self, other): ...
Expand All @@ -23,13 +30,13 @@ class Address:
country: Incomplete
def __init__(
self,
street: str = "",
city: str = "",
region: str = "",
code: str = "",
country: str = "",
box: str = "",
extended: str = "",
street: str | list[str] = "",
city: str | list[str] = "",
region: str | list[str] = "",
code: str | list[str] = "",
country: str | list[str] = "",
box: str | list[str] = "",
extended: str | list[str] = "",
) -> None: ...
@staticmethod
def toString(val, join_char: str = "\n"): ...
Expand Down