We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c9108 commit d4ec5f0Copy full SHA for d4ec5f0
extensions/fine_python_virtualenv/src/fine_python_virtualenv/prepare_envs_handler.py
@@ -37,7 +37,7 @@ async def run(
37
for env_info in payload.envs:
38
if payload.recreate and env_info.venv_dir_path.exists():
39
self.logger.debug(f"Remove virtualenv dir {env_info.venv_dir_path}")
40
- self.file_manager.remove_dir(env_info.venv_dir_path)
+ await self.file_manager.remove_dir(env_info.venv_dir_path)
41
42
self.logger.info(f"Creating virtualenv {env_info.venv_dir_path}")
43
if not env_info.venv_dir_path.exists():
0 commit comments