mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Avoid 'dict_keys' issue in Py3+
This commit is contained in:
parent
cf9899b038
commit
2b36eea325
1 changed files with 1 additions and 1 deletions
|
|
@ -320,7 +320,7 @@ class CollectLook(pyblish.api.InstancePlugin):
|
|||
|
||||
# Collect file nodes used by shading engines (if we have any)
|
||||
files = []
|
||||
look_sets = sets.keys()
|
||||
look_sets = list(sets.keys())
|
||||
shader_attrs = [
|
||||
"surfaceShader",
|
||||
"volumeShader",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue