Minor markup fix

This commit is contained in:
Simon Willison 2021-08-13 04:32:40 -07:00 committed by GitHub
commit b966c44ef8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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__(