Skip to content

Commit 10e3aab

Browse files
committed
Fixed typo with last_pk
1 parent 6c3f5e6 commit 10e3aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlite_utils/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def insert_all(
445445
with self.db.conn:
446446
result = self.db.conn.execute(sql, values)
447447
self.last_rowid = result.lastrowid
448-
self.lash_pk = None
448+
self.last_pk = None
449449
if hash_id or pk:
450450
self.last_pk = self.db.conn.execute(
451451
"select [{}] from [{}] where rowid = ?".format(

0 commit comments

Comments
 (0)