From 7373a8490c84e3c1577d987a34dbc376474c2c30 Mon Sep 17 00:00:00 2001 From: David Flores Date: Wed, 6 Nov 2024 23:04:51 -0600 Subject: [PATCH] Update insert.rst (#1125) A missing comma was added --- docs/src/piccolo/query_types/insert.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/piccolo/query_types/insert.rst b/docs/src/piccolo/query_types/insert.rst index f8d1de007..6648d6d0b 100644 --- a/docs/src/piccolo/query_types/insert.rst +++ b/docs/src/piccolo/query_types/insert.rst @@ -8,7 +8,7 @@ This is used to bulk insert rows into the table: .. code-block:: python await Band.insert( - Band(name="Pythonistas") + Band(name="Pythonistas"), Band(name="Darts"), Band(name="Gophers") )