From 873922d2753cc53d5e396a2236933a844deb61d6 Mon Sep 17 00:00:00 2001 From: FadyFS Date: Thu, 8 Jun 2023 11:48:25 +0200 Subject: [PATCH] FPS corrected --- .../hosts/maya/plugins/load/load_arnold_standin.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/openpype/hosts/maya/plugins/load/load_arnold_standin.py b/openpype/hosts/maya/plugins/load/load_arnold_standin.py index 4bc4a1bbe5..0d76ba9f84 100644 --- a/openpype/hosts/maya/plugins/load/load_arnold_standin.py +++ b/openpype/hosts/maya/plugins/load/load_arnold_standin.py @@ -10,7 +10,10 @@ from openpype.pipeline import ( get_representation_path ) from openpype.hosts.maya.api.lib import ( - unique_namespace, get_attribute_input, maintained_selection, convert_to_maya_fps + unique_namespace, + get_attribute_input, + maintained_selection, + convert_to_maya_fps ) from openpype.hosts.maya.api.pipeline import containerise @@ -25,7 +28,6 @@ def is_sequence(files): sequence = True return sequence -#get the fps from the project itself def get_fps(standin_shape): fps = convert_to_maya_fps( @@ -33,10 +35,6 @@ def get_fps(standin_shape): ) return fps - - - - class ArnoldStandinLoader(load.LoaderPlugin): """Load as Arnold standin"""