From b40b75f843bca83179c1cd21e683d01f2b4285c2 Mon Sep 17 00:00:00 2001 From: Huw Jones Date: Wed, 27 May 2020 01:24:16 +0100 Subject: [PATCH] Fix Repository.get_issues stub (#1540) Fixes #1539 --- github/Repository.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/Repository.pyi b/github/Repository.pyi index e0380e83..48d4cbb5 100644 --- a/github/Repository.pyi +++ b/github/Repository.pyi @@ -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] = ...,