From 66efae67dd54acf4b0d63376e616f2936371e592 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 26 Feb 2021 19:13:12 +0100 Subject: [PATCH] extracted `compile_list_of_regexes` to pype.lib's init file --- pype/lib/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pype/lib/__init__.py b/pype/lib/__init__.py index 67a31d1737..4023391d64 100644 --- a/pype/lib/__init__.py +++ b/pype/lib/__init__.py @@ -78,7 +78,9 @@ from .applications import ( EnvironmentPrepData, prepare_host_environments, prepare_context_environments, - get_app_environments_for_context + get_app_environments_for_context, + + compile_list_of_regexes ) from .plugin_tools import ( @@ -167,6 +169,8 @@ __all__ = [ "prepare_context_environments", "get_app_environments_for_context", + "compile_list_of_regexes", + "filter_pyblish_plugins", "source_hash", "get_unique_layer_name",