Skip to content

Commit 67f27a8

Browse files
committed
fix: replace non-inclusive language in optionals.py
Signed-off-by: Luca Muscariello <muscariello@ieee.org>
1 parent 7433e04 commit 67f27a8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/a2a/client/optionals.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
try:
66
from grpc.aio import Channel # pyright: ignore[reportAssignmentType]
77
except ImportError:
8-
# If grpc.aio is not available, define a dummy type for type checking.
9-
# This dummy type will only be used by type checkers.
8+
# If grpc.aio is not available, define a stub type for type checking.
9+
# This stub type will only be used by type checkers.
1010
if TYPE_CHECKING:
1111

1212
class Channel: # type: ignore[no-redef]
13-
"""Dummy class for type hinting when grpc.aio is not available."""
13+
"""Stub class for type hinting when grpc.aio is not available."""
1414

1515
else:
1616
Channel = None # At runtime, pd will be None if the import failed.

0 commit comments

Comments
 (0)