Skip to content

Commit

Permalink
fix sqlite_manifest use
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Nov 30, 2022
1 parent 593848c commit 14d0fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourmash/index/sqlite_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ class LCA_SqliteDatabase(SqliteIndex):
def __init__(self, dbfile, *, lineage_db=None, sqlite_manifest=None):
# CTB note: we need to let SqliteIndex open dbfile here, so can't
# just pass in a conn.
super().__init__(dbfile)
super().__init__(dbfile, sqlite_manifest=sqlite_manifest)

c = self.conn.cursor()

Expand Down

0 comments on commit 14d0fb4

Please sign in to comment.