Skip to content

Commit

Permalink
fixing return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jeisenman23 committed Nov 15, 2024
1 parent b0429a4 commit a41b030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elm/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ def engineer_query(self, query,
used_index = np.array(used_index)
references = self.make_ref_list(used_index)
if timeit:
return message, references, vector_query_time
return message, references
return message, references, used_index, vector_query_time
return message, references, used_index

@abstractmethod
def make_ref_list(self, idx):
Expand Down

0 comments on commit a41b030

Please sign in to comment.