Skip to content

Commit 37a81a8

Browse files
committed
[python-jenkins] Make class and url required in _Job TypeDict
1 parent eb02655 commit 37a81a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/python-jenkins/jenkins/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ _JSON: TypeAlias = dict[str, _JSONValue]
9494

9595
@type_check_only
9696
class _Job(TypedDict, total=False):
97-
_class: str
98-
url: str
97+
_class: Required[str]
98+
url: Required[str]
9999
color: str
100100
name: Required[str]
101101
fullname: Required[str]

0 commit comments

Comments
 (0)