Skip to content

Commit 556aac2

Browse files
committed
chore: Fix spelling: the module
Signed-off-by: Josh Soref <[email protected]>
1 parent f0e0499 commit 556aac2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/google/adk/cli/utils/agent_loader.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _load_from_module_or_package(
8181
if e.name == agent_name:
8282
logger.debug("Module %s itself not found.", agent_name)
8383
else:
84-
# it's the case the module imported by {agent_name}.agent module is not
84+
# the module imported by {agent_name}.agent module is not
8585
# found
8686
e.msg = f"Fail to load '{agent_name}' module. " + e.msg
8787
raise e
@@ -120,8 +120,7 @@ def _load_from_submodule(self, agent_name: str) -> Optional[BaseAgent]:
120120
if e.name == f"{agent_name}.agent" or e.name == agent_name:
121121
logger.debug("Module %s.agent not found.", agent_name)
122122
else:
123-
# it's the case the module imported by {agent_name}.agent module is not
124-
# found
123+
# the module imported by {agent_name}.agent module is not found
125124
e.msg = f"Fail to load '{agent_name}.agent' module. " + e.msg
126125
raise e
127126
except Exception as e:

0 commit comments

Comments
 (0)