File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change 27
27
from variantlib .plugins .py_envs import INSTALLER_PYTHON_ENVS
28
28
from variantlib .plugins .py_envs import AutoPythonEnv
29
29
from variantlib .plugins .py_envs import BasePythonEnv
30
- from variantlib .plugins .py_envs import ExternalNonIsolatedPythonEnv
31
30
from variantlib .validators .base import validate_matches_re
32
31
33
32
if TYPE_CHECKING :
@@ -472,25 +471,3 @@ def _load_all_plugins(self) -> None:
472
471
)
473
472
474
473
self ._load_all_plugins_from_tuple (plugin_apis = self ._plugin_apis )
475
-
476
-
477
- class ManualPluginLoader (BasePluginLoader ):
478
- """Load and query plugins"""
479
-
480
- _python_ctx : ExternalNonIsolatedPythonEnv
481
-
482
- def __init__ (self ) -> None :
483
- self ._namespace_map = {}
484
- super ().__init__ (python_ctx = ExternalNonIsolatedPythonEnv ().__enter__ ())
485
-
486
- def __enter__ (self ) -> Self :
487
- return self
488
-
489
- def __exit__ (self , * args : object ) -> None :
490
- self ._namespace_map = {}
491
-
492
- def __del__ (self ) -> None :
493
- self ._python_ctx .__exit__ ()
494
-
495
- def _load_all_plugins (self ) -> None :
496
- raise NotImplementedError ("This Plugin Loader doesn't support this behavior" )
You can’t perform that action at this time.
0 commit comments