mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user