We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28cb73c commit 5d538b8Copy full SHA for 5d538b8
1 file changed
src/a2a/utils/constants.py
@@ -1,8 +1,14 @@
1
"""Constants for well-known URIs used throughout the A2A Python SDK."""
2
3
+import os # CI test: unused import to trigger ruff F401
4
from enum import Enum
5
6
7
+def _ci_test_bad_return() -> int:
8
+ """CI test: returns str but annotated as int to trigger mypy."""
9
+ return 'not an int'
10
+
11
12
AGENT_CARD_WELL_KNOWN_PATH = '/.well-known/agent-card.json'
13
DEFAULT_RPC_URL = '/'
14
DEFAULT_LIST_TASKS_PAGE_SIZE = 50
0 commit comments