Skip to content

Commit

Permalink
issue #49 - removing search balise
Browse files Browse the repository at this point in the history
  • Loading branch information
melanie-fressard authored Nov 23, 2023
1 parent 963c049 commit bb483ed
Show file tree
Hide file tree
Showing 3 changed files with 356 additions and 364 deletions.
4 changes: 3 additions & 1 deletion bin/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ def init_bench(query):
results = init_bench(query)
query_file_name = query + ".json"
with open('tests/output/' + query_file_name, 'w+') as result_file:
json.dump(results, result_file, indent=4)
# Extract the list of results
result_list = results[0]['search']
json.dump(result_list, result_file, indent=4)
Loading

0 comments on commit bb483ed

Please sign in to comment.