Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 86ee04c

Browse files
committedJan 3, 2025·
Fix constructor args for two vobject classes
The upstream source code has a docstring explicitly stating that these arguments can be strings or lists of strings: https://github.com/py-vobject/vobject/blob/662db24688df1f6d8f12d68462a13975bd0d08de/vobject/vcard.py#L18 https://github.com/py-vobject/vobject/blob/662db24688df1f6d8f12d68462a13975bd0d08de/vobject/vcard.py#L58
1 parent 33d1b16 commit 86ee04c

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed
 

‎stubs/vobject/vobject/vcard.pyi

+15-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@ class Name:
88
additional: Incomplete
99
prefix: Incomplete
1010
suffix: Incomplete
11-
def __init__(self, family: str = "", given: str = "", additional: str = "", prefix: str = "", suffix: str = "") -> None: ...
11+
def __init__(
12+
self,
13+
family: str | list[str] = "",
14+
given: str | list[str] = "",
15+
additional: str | list[str] = "",
16+
prefix: str | list[str] = "",
17+
suffix: str | list[str] = "",
18+
) -> None: ...
1219
@staticmethod
1320
def toString(val): ...
1421
def __eq__(self, other): ...
@@ -23,13 +30,13 @@ class Address:
2330
country: Incomplete
2431
def __init__(
2532
self,
26-
street: str = "",
27-
city: str = "",
28-
region: str = "",
29-
code: str = "",
30-
country: str = "",
31-
box: str = "",
32-
extended: str = "",
33+
street: str | list[str] = "",
34+
city: str | list[str] = "",
35+
region: str | list[str] = "",
36+
code: str | list[str] = "",
37+
country: str | list[str] = "",
38+
box: str | list[str] = "",
39+
extended: str | list[str] = "",
3340
) -> None: ...
3441
@staticmethod
3542
def toString(val, join_char: str = "\n"): ...

0 commit comments

Comments
 (0)
Please sign in to comment.