Skip to content

Commit

Permalink
fix: Extension now correctly detects if zenml is not installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-R-Perkins committed Jul 30, 2024
1 parent 6ac8078 commit 85ca717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundled/tool/lsp_zenml.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def is_zenml_installed(self) -> bool:
process = await asyncio.create_subprocess_exec(
self.python_interpreter,
"-c",
"import zenml",
"import zenml; print(zenml.__version__)",
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE,
)
Expand Down

0 comments on commit 85ca717

Please sign in to comment.