avoid keyword-only args for now
untagged_builds is exported and this aspect of the signature cannot be correctly reported by list-api
This commit is contained in:
parent
71bead5955
commit
6e31a6c663
1 changed files with 2 additions and 2 deletions
|
|
@ -1395,7 +1395,7 @@ def list_tags(build=None, package=None, perms=True, queryOpts=None, pattern=None
|
|||
|
||||
|
||||
def readTaggedBuilds(tag, event=None, inherit=False, latest=False, package=None, owner=None,
|
||||
type=None, extra=False, *, draft=None):
|
||||
type=None, extra=False, draft=None):
|
||||
"""Returns a list of builds for specified tag
|
||||
|
||||
:param int tag: tag ID
|
||||
|
|
@ -8514,7 +8514,7 @@ def query_history(tables=None, **kwargs):
|
|||
return ret
|
||||
|
||||
|
||||
def untagged_builds(name=None, queryOpts=None, *, draft=None):
|
||||
def untagged_builds(name=None, queryOpts=None, draft=None):
|
||||
"""Returns the list of untagged builds"""
|
||||
st_complete = koji.BUILD_STATES['COMPLETE']
|
||||
# following can be achieved with simple query but with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue