Island: Add missing return type to _build_agent_binary_repository()

This commit is contained in:
Mike Salvatore 2022-09-20 13:48:50 -04:00
parent dfa1709064
commit fca3a1357e
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ def _decorate_file_repository(file_repository: IFileRepository) -> IFileReposito
)
def _build_agent_binary_repository():
def _build_agent_binary_repository() -> IAgentBinaryRepository:
file_repository = _decorate_file_repository(LocalStorageFileRepository(AGENT_BINARIES_PATH))
agent_binary_repository = AgentBinaryRepository(file_repository)