Skip to content

Commit

Permalink
fix introduced err
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegenes committed Apr 15, 2022
1 parent 29fd59d commit 479d315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourmash/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def search_databases_with_flat_query(query, databases, **kwargs):
results.sort(key=lambda x: -x[0])

x = []
ksize = query_mh.ksize
ksize = query.minhash.ksize
for (score, match, filename) in results:
x.append(SearchResult(similarity=score,
match=match,
Expand Down

0 comments on commit 479d315

Please sign in to comment.