mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix typos
This commit is contained in:
parent
1bd574d4a8
commit
67d8ab27fd
1 changed files with 3 additions and 3 deletions
|
|
@ -144,7 +144,7 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
|
|||
None
|
||||
|
||||
"""
|
||||
self.log.debug("Qeurying latest versions for instances.")
|
||||
self.log.debug("Querying latest versions for instances.")
|
||||
|
||||
hierarchy = {}
|
||||
names_by_asset_ids = collections.defaultdict(set)
|
||||
|
|
@ -153,7 +153,7 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
|
|||
latest_version = instance.data.get("latestVersion")
|
||||
instance.data["latestVersion"] = latest_version
|
||||
|
||||
# Skip instances withou "assetEntity"
|
||||
# Skip instances without "assetEntity"
|
||||
asset_doc = instance.data.get("assetEntity")
|
||||
if not asset_doc:
|
||||
continue
|
||||
|
|
@ -162,7 +162,7 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
|
|||
asset_id = asset_doc["_id"]
|
||||
subset_name = instance.data["subset"]
|
||||
|
||||
# Prepare instance hiearchy for faster filling latest versions
|
||||
# Prepare instance hierarchy for faster filling latest versions
|
||||
if asset_id not in hierarchy:
|
||||
hierarchy[asset_id] = {}
|
||||
if subset_name not in hierarchy[asset_id]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue