mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix typo in ContainersFilterResult namedtuple not_foud -> not_found
This commit is contained in:
parent
e6d44ef9fe
commit
c4127208d2
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue