fix: resolve CI linting and type errors
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / type-check (push) Has been cancelled

This commit is contained in:
2026-02-04 12:58:33 +00:00
parent b4076327d8
commit 5a275b812b

View File

@@ -1,5 +1,12 @@
"""Prompt registry modules."""
from .local import LocalRegistry
from .remote import RemoteRegistry
from .models import RegistryEntry, SearchResult
from .models import RegistryEntry, RegistrySearchResult
__all__ = ["LocalRegistry", "RemoteRegistry", "RegistryEntry", "SearchResult"]
__all__ = [
"LocalRegistry",
"RemoteRegistry",
"RegistryEntry",
"RegistrySearchResult",
]