Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lfayoux committed Feb 1, 2023
1 parent a6f8924 commit 83cd693
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cohere/rerank.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

class RerankResult(CohereObject):

def __init__(self,
document: Dict[str, Any] = None,
index: int = None,
relevance_score: float = None,
def __init__(self,
document: Dict[str, Any] = None,
index: int = None,
relevance_score: float = None,
*args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.document = document
Expand Down

0 comments on commit 83cd693

Please sign in to comment.