From 32963fb56d9b0d4234f8fcc20488cbe2a0ece391 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Tue, 1 Mar 2022 15:43:09 +0100 Subject: [PATCH] move lib out of host implementation --- openpype/hosts/unreal/hooks/pre_workfile_preparation.py | 2 +- openpype/hosts/unreal/{api => }/lib.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename openpype/hosts/unreal/{api => }/lib.py (100%) diff --git a/openpype/hosts/unreal/hooks/pre_workfile_preparation.py b/openpype/hosts/unreal/hooks/pre_workfile_preparation.py index 6b787f4da7..f07e96551c 100644 --- a/openpype/hosts/unreal/hooks/pre_workfile_preparation.py +++ b/openpype/hosts/unreal/hooks/pre_workfile_preparation.py @@ -10,7 +10,7 @@ from openpype.lib import ( get_workdir_data, get_workfile_template_key ) -from openpype.hosts.unreal.api import lib as unreal_lib +import openpype.hosts.unreal.lib as unreal_lib class UnrealPrelaunchHook(PreLaunchHook): diff --git a/openpype/hosts/unreal/api/lib.py b/openpype/hosts/unreal/lib.py similarity index 100% rename from openpype/hosts/unreal/api/lib.py rename to openpype/hosts/unreal/lib.py