Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Hound
Browse files Browse the repository at this point in the history
  • Loading branch information
tokejepsen committed Feb 15, 2024
1 parent fa404cb commit f285c1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion openpype/hosts/nuke/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def get_colorspace_list(colorspace_knob):
colorspaces = []

try:
for count, value in enumerate(colorspace_knob.values()):
for count, _ in enumerate(colorspace_knob.values()):
colorspace_knob.setValue(count)
colorspaces.append(colorspace_knob.value())
finally:
Expand Down
1 change: 0 additions & 1 deletion openpype/hosts/nuke/plugins/load/load_clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,6 @@ def _get_colorspace_data(self, version_doc, representation_doc, filepath):
Any[str,None]: colorspace name or None
"""
# Get backward compatible colorspace key.
representation_data = representation_doc["data"]
colorspace = representation_doc["data"].get("colorspace")
self.log.debug(
f"Colorspace from representation colorspace: {colorspace}"
Expand Down

0 comments on commit f285c1f

Please sign in to comment.