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: 1 addition & 1 deletion src/usethis/_tool/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def remove_managed_files(self) -> None:
file.unlink()

def get_install_method(self) -> Literal["pre-commit", "devdep"] | None:
"""Infer the method used to install the tool, return None is uninstalled."""
"""Infer the method used to install the tool, return None if uninstalled."""
if self.is_declared_as_dep():
return "devdep"

Expand Down
Loading