ty checking

This commit is contained in:
John Lancaster
2026-06-21 15:29:57 -05:00
parent c5b7733528
commit 7fec3a4337
12 changed files with 372 additions and 239 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ from personal_mcp.registry.ingest.document import MarkdownDocument
@pytest.fixture
def make_doc() -> Callable[[str, str], MarkdownDocument]:
def make_doc() -> Callable[[str], MarkdownDocument]:
def _make_doc(relpath: str, content: str = "# body\n") -> MarkdownDocument:
return MarkdownDocument(relpath=PurePosixPath(relpath), content=content)
+1 -1
View File
@@ -11,7 +11,7 @@ from personal_mcp.registry.ingest.skill import group_skill_paths
pytestmark = pytest.mark.unit
MakeDoc = Callable[[str, str], MarkdownDocument]
MakeDoc = Callable[[str], MarkdownDocument]
class TestSkillFilesBundle: