Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-r-santos committed Apr 4, 2024
1 parent f7d86cf commit f9af4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pixi_kernel/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def find_project_manifest() -> Union[str, PixiKernelError]:
)
return PixiKernelError(message=message)

pixi_version = result.stdout.removeprefix("pixi ").strip()
pixi_version = result.stdout[len("pixi ") :].strip()
if version.parse(pixi_version) < version.parse(MINIMUM_PIXI_VERSION):
return PixiKernelError(
message=(
Expand Down

0 comments on commit f9af4df

Please sign in to comment.