changed imports and removed transcoding code from plugin tools

This commit is contained in:
iLLiCiTiT 2021-11-25 15:48:29 +01:00
parent d4d799ebc2
commit 6239c06715
2 changed files with 9 additions and 135 deletions

View file

@ -66,6 +66,11 @@ from .profiles_filtering import (
filter_profiles
)
from .transcoding import (
decompress,
get_decompress_dir,
should_decompress
)
from .avalon_context import (
CURRENT_DOC_SCHEMAS,
PROJECT_NAME_ALLOWED_SYMBOLS,
@ -138,10 +143,6 @@ from .plugin_tools import (
source_hash,
get_unique_layer_name,
get_background_layers,
oiio_supported,
decompress,
get_decompress_dir,
should_decompress
)
from .path_tools import (
@ -194,6 +195,10 @@ __all__ = [
"classes_from_module",
"import_module_from_dirpath",
"decompress",
"get_decompress_dir",
"should_decompress",
"CURRENT_DOC_SCHEMAS",
"PROJECT_NAME_ALLOWED_SYMBOLS",
"PROJECT_NAME_REGEX",
@ -258,10 +263,6 @@ __all__ = [
"source_hash",
"get_unique_layer_name",
"get_background_layers",
"oiio_supported",
"decompress",
"get_decompress_dir",
"should_decompress",
"version_up",
"get_version_from_path",