Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/usethis/_integrations/backend/uv/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from typing import TYPE_CHECKING

from usethis._config import usethis_config
from usethis._integrations.backend.uv.call import call_uv_subprocess
from usethis._integrations.backend.uv.errors import (
UVDepGroupError,
Expand All @@ -23,7 +22,6 @@ def add_dep_to_group_via_uv(dep: Dependency, group: str):
)
except UVSubprocessFailedError as err:
msg = f"Failed to add '{dep}' to the '{group}' dependency group:\n{err}"
msg += (usethis_config.cpd() / "pyproject.toml").read_text()
raise UVDepGroupError(msg) from None


Expand Down