Skip to content

Commit aec5689

Browse files
committed
Update __init__.py
1 parent ed90443 commit aec5689

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,12 +399,11 @@ def run_command(cmd: list[str], check_return: bool = True, capture: bool = False
399399
raise
400400
return None
401401

402-
def check_tool(tool: str, install_hint: str = "", tracker: StepTracker = None) -> bool:
402+
def check_tool(tool: str, tracker: StepTracker = None) -> bool:
403403
"""Check if a tool is installed. Optionally update tracker.
404404
405405
Args:
406406
tool: Name of the tool to check
407-
install_hint: URL or hint for installing the tool (for error messages)
408407
tracker: Optional StepTracker to update with results
409408
410409
Returns:
@@ -1092,11 +1091,9 @@ def check():
10921091

10931092
tracker = StepTracker("Check Available Tools")
10941093

1095-
# Add git check
10961094
tracker.add("git", "Git version control")
10971095
git_ok = check_tool("git", tracker=tracker)
10981096

1099-
# Check AI agent tools
11001097
agent_results = {}
11011098
for agent_key, agent_config in AGENT_CONFIG.items():
11021099
agent_name = agent_config["name"]

0 commit comments

Comments
 (0)