hub: document removeExternalRepoFromTag arguments
Describe the types of each argument to the removeExternalRepoFromTag() method.
This commit is contained in:
parent
5d86ecacf5
commit
4c505be0fa
1 changed files with 8 additions and 1 deletions
|
|
@ -10451,7 +10451,14 @@ class RootExports(object):
|
|||
add_external_repo_to_tag(tag_info, repo_info, priority, merge_mode)
|
||||
|
||||
def removeExternalRepoFromTag(self, tag_info, repo_info):
|
||||
"""Remove an external repo from a tag"""
|
||||
"""
|
||||
Remove an external repo from a tag
|
||||
|
||||
:param tag_info: Tag name or ID number
|
||||
:param repo_info: External repository name or ID number
|
||||
:raises: GenericError if this external repo is not associated
|
||||
with this tag.
|
||||
"""
|
||||
# wrap the local method so we don't expose the event parameter
|
||||
remove_external_repo_from_tag(tag_info, repo_info)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue