From b09b7a51292af4329f22934229a1ba6bfab2606b Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 23 Aug 2022 10:30:44 -0700 Subject: [PATCH] Docstring tweak --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 0139f58..e695304 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -892,7 +892,7 @@ class Database: :param hash_id_columns: List of columns to be used when calculating the hash ID for a row :param extracts: List or dictionary of columns to be extracted during inserts, see :ref:`python_api_extracts` :param if_not_exists: Use ``CREATE TABLE IF NOT EXISTS`` - :param transform: If table already exists, transform it to fit the specified schema + :param transform: If table already exists transform it to fit the specified schema """ # Transform table to match the new definition if table already exists: if transform and self[name].exists():