WIP fixed mypy src types (#1036)

This commit is contained in:
Lorenze Jay
2024-07-30 10:59:50 -07:00
committed by GitHub
parent d824db82a3
commit 6378f6caec
5 changed files with 27 additions and 17 deletions

View File

@@ -4,7 +4,7 @@ from typing import Any, Dict
class Storage:
"""Abstract base class defining the storage interface"""
def save(self, key: str, value: Any, metadata: Dict[str, Any]) -> None:
def save(self, value: Any, metadata: Dict[str, Any]) -> None:
pass
def search(self, key: str) -> Dict[str, Any]: # type: ignore