Skip to content

Commit 89d241f

Browse files
committed
Fix formatting issues: Standardize quotes to double quotes in __all__ list.
1 parent 573cd97 commit 89d241f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/google/adk/agents/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ def __getattr__(name: str):
5353
raise AttributeError(f"module {__name__} has no attribute {name}")
5454

5555
__all__ = [
56-
'Agent',
57-
'BaseAgent',
58-
'Context',
59-
'InvocationContext',
60-
'LiveRequest',
61-
'LiveRequestQueue',
62-
'LlmAgent',
63-
'LoopAgent',
64-
'McpInstructionProvider',
65-
'ParallelAgent',
66-
'RunConfig',
67-
'SequentialAgent',
56+
"Agent",
57+
"BaseAgent",
58+
"Context",
59+
"InvocationContext",
60+
"LiveRequest",
61+
"LiveRequestQueue",
62+
"LlmAgent",
63+
"LoopAgent",
64+
"McpInstructionProvider",
65+
"ParallelAgent",
66+
"RunConfig",
67+
"SequentialAgent",
6868
]

0 commit comments

Comments
 (0)