From f7c04cf9a81065ef0e69bff1578561888004bf8e Mon Sep 17 00:00:00 2001 From: HonahX Date: Sun, 24 Mar 2024 17:08:18 -0700 Subject: [PATCH] fix lint --- mkdocs/docs/api.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mkdocs/docs/api.md b/mkdocs/docs/api.md index 62d6aa63ef..ae158b753e 100644 --- a/mkdocs/docs/api.md +++ b/mkdocs/docs/api.md @@ -164,7 +164,9 @@ catalog.create_table( schema=schema, ) ``` + To create a table with some subsequent changes in a transaction: + ```python with catalog.create_table_transaction( identifier="docs_example.bids", @@ -182,7 +184,6 @@ with catalog.create_table_transaction( txn.set_properties(test_a="test_aa", test_b="test_b", test_c="test_c") ``` - ## Load a table ### Catalog table