@@ -259,6 +259,8 @@ class Repository(CompletableGithubObject):
259
259
author : Union [InputGitAuthor , _NotSetType ] = ...,
260
260
) -> Dict [str , Union [Commit , _NotSetType ]]: ...
261
261
@property
262
+ def delete_branch_on_merge (self ) -> bool : ...
263
+ @property
262
264
def deployments_url (self ) -> str : ...
263
265
@property
264
266
def description (self ) -> str : ...
@@ -331,7 +333,7 @@ class Repository(CompletableGithubObject):
331
333
def get_contributors (
332
334
self , anon : Union [str , _NotSetType ] = ...
333
335
) -> PaginatedList [NamedUser ]: ...
334
- def get_deployment (self , id_ : int ) -> Any : ...
336
+ def get_deployment (self , id_ : int ) -> Deployment : ...
335
337
def get_deployments (
336
338
self ,
337
339
sha : Union [str , _NotSetType ] = ...,
@@ -351,6 +353,7 @@ class Repository(CompletableGithubObject):
351
353
) -> Repository : ...
352
354
def get_git_blob (self , sha : str ) -> GitBlob : ...
353
355
def get_git_commit (self , sha : str ) -> GitCommit : ...
356
+ def get_git_matching_refs (self , ref : str ) -> PaginatedList [GitRef ]: ...
354
357
def get_git_ref (self , ref : str ) -> GitRef : ...
355
358
def get_git_refs (self ) -> PaginatedList [GitRef ]: ...
356
359
def get_git_tag (self , sha : str ) -> GitTag : ...
0 commit comments