mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge pull request #3896 from BigRoy/fix_typo_containersfilterresult
Fix typo in ContainersFilterResult namedtuple `not_foud` -> `not_found`
This commit is contained in:
commit
f480138347
1 changed files with 2 additions and 2 deletions
|
|
@ -37,7 +37,7 @@ log = logging.getLogger(__name__)
|
||||||
|
|
||||||
ContainersFilterResult = collections.namedtuple(
|
ContainersFilterResult = collections.namedtuple(
|
||||||
"ContainersFilterResult",
|
"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'.
|
Categories are 'latest', 'outdated', 'invalid' and 'not_found'.
|
||||||
The 'lastest' containers are from last version, 'outdated' are not,
|
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.
|
some missing entity in database.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue