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

[QUAD] Bug: Avoid variable re declaration bug on Unreal #6325

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openpype/hosts/unreal/plugins/load/load_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ def load(self, context, name, namespace, options=None):
if (s.get_class() ==
MovieSceneSkeletalAnimationSection.static_class())]

for s in sections:
s.params.set_editor_property('animation', animation)
for section in sections:
section.params.set_editor_property('animation', animation)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

line too long (82 > 79 characters)


# Create Asset Container
unreal_pipeline.create_container(
Expand Down
Loading