Skip to content

Commit 0b6c156

Browse files
committed
fix(skills): type annotate parse frontmatter dict for mypy
1 parent 59a6c7c commit 0b6c156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google/adk/skills/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _load_dir(directory: pathlib.Path) -> dict[str, str]:
9696

9797
def _parse_skill_md(
9898
skill_dir: pathlib.Path,
99-
) -> tuple[dict, str, pathlib.Path]:
99+
) -> tuple[dict[str, object], str, pathlib.Path]:
100100
"""Parse SKILL.md from a skill directory.
101101
102102
Args:

0 commit comments

Comments
 (0)