improves documentation for database.py

pull/129/head
msramalho 2024-02-13 15:48:20 +00:00
rodzic a191806344
commit e48bbdabc5
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -32,7 +32,7 @@ class Database(Step, ABC):
# @abstractmethod
def fetch(self, item: Metadata) -> Union[Metadata, bool]:
"""check if the given item has been archived already"""
"""check and fetch if the given item has been archived already, each database should handle its own caching, and configuration mechanisms"""
return False
@abstractmethod