From b966c44ef81bc6acbc4be95942afcf33b31e876f Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 13 Aug 2021 04:32:40 -0700 Subject: [PATCH] Minor markup fix --- sqlite_utils/db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 55067d0..ec399fa 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -991,9 +991,9 @@ class Queryable: class Table(Queryable): "Tables should usually be initialized using the ``db.table(table_name)`` or ``db[table_name]`` methods." - #: The ``rowid`` of the last inserted, updated or selected row.` + #: 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.` + #: The primary key of the last inserted, updated or selected row. last_pk: Optional[Any] = None def __init__(