From 69b9a123024a3feba5948e4102b0fe06573cdc97 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 19 Jun 2024 17:43:14 -0500 Subject: [PATCH] Better class docs --- src/pgwui_core/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pgwui_core/core.py b/src/pgwui_core/core.py index 96c1549..64d84c2 100644 --- a/src/pgwui_core/core.py +++ b/src/pgwui_core/core.py @@ -649,10 +649,10 @@ def format_exception(ex): @attrs.define(slots=False) class SQLCommand(): ''' - An SQL command that returns nothing + An SQL command or commands Attributes: - stmt The statement, formatted for psycopg3 substitution + stmt The statement or statements, formatted for psycopg3 substitution args Tuple of arguments used to substitute when executed. ec(ex) Produces the exception to raise an instance of on failure Input: -- 2.34.1