Merge pull request #3896 from BigRoy/fix_typo_containersfilterresult

Fix typo in ContainersFilterResult namedtuple `not_foud` -> `not_found`
This commit is contained in:
Jakub Trllo 2022-09-22 11:46:30 +02:00 committed by GitHub
commit f480138347
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ log = logging.getLogger(__name__)
ContainersFilterResult = collections.namedtuple(
"ContainersFilterResult",
["latest", "outdated", "not_foud", "invalid"]
["latest", "outdated", "not_found", "invalid"]
)
@ -808,7 +808,7 @@ def filter_containers(containers, project_name):
Categories are 'latest', 'outdated', 'invalid' and 'not_found'.
The 'lastest' containers are from last version, 'outdated' are not,
'invalid' are invalid containers (invalid content) and 'not_foud' has
'invalid' are invalid containers (invalid content) and 'not_found' has
some missing entity in database.
Args: