From b5e902fcb02953f0f1fc4c652a24c262559a37d7 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 28 Jul 2022 08:13:47 -0700 Subject: [PATCH] Applied Black --- sqlite_utils/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 1a15d1c..18a442a 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -1267,6 +1267,7 @@ class Table(Queryable): :param conversions: Dictionary of column names and conversion functions :param columns: Dictionary of column names to column types """ + #: The ``rowid`` of the last inserted, updated or selected row. last_rowid: Optional[int] = None #: The primary key of the last inserted, updated or selected row.