🔀 chore(MetalRetriever.py): fix import statement for Metal class from metal_sdk.metal module to resolve type checking issue

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-28 08:06:37 -03:00
commit cc4db3911e

View file

@ -2,7 +2,7 @@ from typing import Optional
from langflow import CustomComponent
from langchain.retrievers import MetalRetriever
from langchain.schema import BaseRetriever
from metal_sdk.metal import Metal
from metal_sdk.metal import Metal # type: ignore
class MetalRetrieverComponent(CustomComponent):