summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazantcev Andrey <45011689+heckad@users.noreply.github.com>2020-12-31 22:48:09 +0300
committerGitHub <noreply@github.com>2020-12-31 22:48:09 +0300
commita098320b36106ce28594707923c8ee504e6d3c0b (patch)
tree6cb6fc41cfb8f8c2281afb757a3105f106274cff
parent102b91d8950926f1215dd7c59c5b7f200b5c0f8b (diff)
downloadsqlalchemy-a098320b36106ce28594707923c8ee504e6d3c0b.tar.gz
Remove the extra parenthesis.
-rw-r--r--doc/build/orm/session_basics.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session_basics.rst b/doc/build/orm/session_basics.rst
index 23a76b4d0..fe6bb8a67 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)