From 83db39fbaa3880433b8ce2177ced4d11430354a9 Mon Sep 17 00:00:00 2001 From: Kirill Bulygin Date: Sat, 12 Sep 2026 13:00:11 +0500 Subject: [PATCH] python-api.rst: add a missing parenthesis --- docs/python-api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index d515642a5..846243cfd 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -1938,7 +1938,7 @@ The ``column_order=`` parameter can be used to change the order of the columns. .. code-block:: python # Change column order - table.transform(column_order=("name", "age", "id") + table.transform(column_order=("name", "age", "id")) .. _python_api_transform_add_foreign_key_constraints: