XThomasBU
Added comments to the base classes
7a98bd3
raw
history blame
No virus
245 Bytes
# template for retriever classes
class BaseRetriever:
def __init__(self, config):
self.config = config
def return_retriever(self):
"""
Returns the retriever object
"""
raise NotImplementedError