Fix Repository.create_repository_dispatch type signature (#1643)

* Fix Repository.create_repository_dispatch type signature

* Change from object to Any
This commit is contained in:
Chris de Graaf
2020-08-10 10:17:51 +10:00
committed by GitHub
parent 69b37b4ab6
commit f891bd6136
+1 -1
View File
@@ -185,7 +185,7 @@ class Repository(CompletableGithubObject):
@overload
def create_pull(self, title: _NotSetType, body: _NotSetType, base: str, head: str, maintainer_can_modify: _NotSetType, issue: Issue) -> PullRequest: ...
def create_repository_dispatch(
self, event_type: str, client_payload: Dict[str, str]
self, event_type: str, client_payload: Dict[str, Any]
) -> bool: ...
def create_source_import(
self,