Fix Repository.get_issues stub (#1540)

Fixes #1539
This commit is contained in:
Huw Jones
2020-05-27 10:24:16 +10:00
committed by GitHub
parent 69bfc32511
commit b40b75f843
+1 -1
View File
@@ -298,7 +298,7 @@ class Repository(CompletableGithubObject):
state: Union[str, _NotSetType] = ...,
assignee: Union[NamedUser, str, _NotSetType] = ...,
mentioned: Union[_NotSetType, NamedUser] = ...,
labels: Union[List[Label], _NotSetType] = ...,
labels: Union[List[str], List[Label], _NotSetType] = ...,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,