From: Kazantcev Andrey <45011689+heckad@users.noreply.github.com> Date: Thu, 31 Dec 2020 19:48:09 +0000 (+0300) Subject: Remove the extra parenthesis. X-Git-Tag: rel_1_4_0b2~59^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a098320b36106ce28594707923c8ee504e6d3c0b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Remove the extra parenthesis. --- diff --git a/doc/build/orm/session_basics.rst b/doc/build/orm/session_basics.rst index 23a76b4d01..fe6bb8a67d 100644 --- a/doc/build/orm/session_basics.rst +++ b/doc/build/orm/session_basics.rst @@ -556,7 +556,7 @@ Core :class:`_sql.Update` construct:: from sqlalchemy import update - stmt = update(User).where(User.name == "squidward").values(name="spongebob")).\ + stmt = update(User).where(User.name == "squidward").values(name="spongebob").\ execution_options(synchronize_session="fetch") session.execute(stmt)