diff --git a/pype/lib/__init__.py b/pype/lib/__init__.py index 5fec2b8069..d02d20ad4d 100644 --- a/pype/lib/__init__.py +++ b/pype/lib/__init__.py @@ -31,8 +31,6 @@ from .applications import ( ApplicationManager, PreLaunchHook, PostLaunchHook, - launch_application, - ApplicationAction, _subprocess ) @@ -50,9 +48,6 @@ from .ffmpeg_utils import ( ) __all__ = [ - "get_avalon_database", - "set_io_database", - "env_value_to_bool", "get_paths_from_environ", @@ -77,8 +72,6 @@ __all__ = [ "ApplicationManager", "PreLaunchHook", "PostLaunchHook", - "launch_application", - "ApplicationAction", "filter_pyblish_plugins", diff --git a/pype/lib/applications.py b/pype/lib/applications.py index 0f2ea42175..ea95fefea1 100644 --- a/pype/lib/applications.py +++ b/pype/lib/applications.py @@ -9,7 +9,7 @@ from abc import ABCMeta, abstractmethod import six -from pype.settings import system_settings, environemtns +from pype.settings import system_settings, environments from ..api import Logger from .python_module_tools import ( diff --git a/pype/tests/test_lib_restructuralization.py b/pype/tests/test_lib_restructuralization.py index 48370f5438..957167a8bf 100644 --- a/pype/tests/test_lib_restructuralization.py +++ b/pype/tests/test_lib_restructuralization.py @@ -11,8 +11,6 @@ def test_backward_compatibility(printer): from pype.lib import get_latest_version from pype.lib import ApplicationLaunchFailed - from pype.lib import launch_application - from pype.lib import ApplicationAction from pype.lib import get_ffmpeg_tool_path from pype.lib import get_last_version_from_path