Skip to content

Commit 5d538b8

Browse files
committed
Introduce failure for test
1 parent 28cb73c commit 5d538b8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/a2a/utils/constants.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
"""Constants for well-known URIs used throughout the A2A Python SDK."""
22

3+
import os # CI test: unused import to trigger ruff F401
34
from enum import Enum
45

56

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+
612
AGENT_CARD_WELL_KNOWN_PATH = '/.well-known/agent-card.json'
713
DEFAULT_RPC_URL = '/'
814
DEFAULT_LIST_TASKS_PAGE_SIZE = 50

0 commit comments

Comments
 (0)