Redefine signatures parameter for function

This commit is contained in:
Eric Torres 2019-01-28 10:59:18 -08:00
parent 4181d339df
commit 7c00a7580c

View File

@ -7,13 +7,13 @@ PKGEXT = 'pkg.tar.xz'
SIGEXT = f"{PKGEXT}.sig"
# ========== Functions ==========
def get_pkgfiles(query, directory=None, signatures=False):
def get_pkgfiles(query, directory=None, signatures_only=False):
"""Return a list of package files in the current working directory.
:param directory: a directory to search in
:type directory: str, bytes, or path-like object
:param signatures: include only signature files
:type signatures: bool
:param signatures_only: include only signature files
:type signatures_only: bool
:returns: paths of package files
:rtype: list
"""
@ -22,7 +22,7 @@ def get_pkgfiles(query, directory=None, signatures=False):
else:
path = pathlib.Path.cwd()
if signatures:
if signatures_only:
return list(path.glob(f"{query}*.{SIGEXT}"))
return list(path.glob(f"{query}*.{PKGEXT}"))