Skip to content
Merged
Changes from 1 commit
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/a2a/client/card_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async def get_agent_card(
A2AClientJSONError: If the response body cannot be decoded as JSON
or validated against the AgentCard schema.
"""
if relative_card_path is None:
if not relative_card_path:
# Use the default public agent card path configured during initialization
path_segment = self.agent_card_path
else:
Expand Down
Loading