Skip to content

Commit f37f469

Browse files
committed
misc: small fix or general refactoring i did not bother commenting
1 parent 5407772 commit f37f469

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nerve/cli/agents.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def agents(
4242
_show_awesome_agents(agents)
4343

4444

45-
def _fetch_awesome_agents() -> list[dict] | None:
45+
def _fetch_awesome_agents() -> list[dict[str, t.Any]] | None:
4646
try:
4747
response = requests.get("https://api.awesomeagents.ai/index.json")
4848
response.raise_for_status()
@@ -52,7 +52,7 @@ def _fetch_awesome_agents() -> list[dict] | None:
5252
return None
5353

5454

55-
def _show_awesome_agents(agents: list[dict]) -> None:
55+
def _show_awesome_agents(agents: list[dict[str, t.Any]]) -> None:
5656
print("🔍 Available from the index:\n")
5757
for agent in agents:
5858
repo = agent["repo"]

0 commit comments

Comments
 (0)