Skip to content

Commit 4e5d07c

Browse files
committed
Spelling/formatting
1 parent 683e620 commit 4e5d07c

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.github/actions/spelling/allow.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
adk
21
AError
32
ARequest
43
AStarlette
4+
adk
55
genai
66
inmemory
7+
langgraph
78
lifecycles
89
oauthoidc
10+
opensource
11+
socio
912
sse

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ negative impact on the project or its community.
6060

6161
We do not believe that all conflict is bad; healthy debate and disagreement
6262
often yield positive results. However, it is never okay to be disrespectful or
63-
to engage in behavior that violates the projects code of conduct.
63+
to engage in behavior that violates the project's code of conduct.
6464

6565
If you see someone violating the code of conduct, you are encouraged to address
6666
the behavior directly with those involved. Many issues can be resolved quickly
@@ -70,7 +70,7 @@ behavior is threatening or harassing, report it. We are dedicated to providing
7070
an environment where participants feel welcome and safe.
7171

7272
Reports should be directed to _[PROJECT STEWARD NAME(s) AND EMAIL(s)]_, the
73-
Project Steward(s) for _[PROJECT NAME]_. It is the Project Stewards duty to
73+
Project Steward(s) for _[PROJECT NAME]_. It is the Project Steward's duty to
7474
receive and address reported violations of the code of conduct. They will then
7575
work with a committee consisting of representatives from the Open Source
7676
Programs Office and the Google Open Source Strategy team. If for any reason you

tests/server/events/test_event_consumer.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
import asyncio
2-
import pytest
2+
3+
from typing import Any
34
from unittest.mock import AsyncMock, MagicMock
5+
6+
import pytest
7+
48
from a2a.server.events.event_consumer import EventConsumer
59
from a2a.server.events.event_queue import EventQueue
6-
from a2a.utils.errors import ServerError
710
from a2a.types import (
811
A2AError,
912
Artifact,
1013
InternalError,
14+
JSONRPCError,
1115
Message,
16+
Part,
1217
Task,
13-
TaskStatusUpdateEvent,
1418
TaskArtifactUpdateEvent,
15-
TaskStatus,
16-
JSONRPCError,
1719
TaskState,
18-
Part,
20+
TaskStatus,
21+
TaskStatusUpdateEvent,
1922
TextPart,
2023
)
21-
from typing import Any
24+
from a2a.utils.errors import ServerError
2225

2326

2427
MINIMAL_TASK: dict[str, Any] = {

0 commit comments

Comments
 (0)