mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
fix linting error
This commit is contained in:
parent
0f7cde023b
commit
e10980d445
@ -67,7 +67,7 @@ class PickBestFeatureEmbedder(base.Embedder[PickBestEvent]):
|
||||
self.auto_embed = auto_embed
|
||||
|
||||
@staticmethod
|
||||
def _str(embedding: List[float]):
|
||||
def _str(embedding: List[float]) -> str:
|
||||
return " ".join([f"{i}:{e}" for i, e in enumerate(embedding)])
|
||||
|
||||
def get_label(self, event: PickBestEvent) -> tuple:
|
||||
|
Loading…
Reference in New Issue
Block a user