From: SiloƩ Garcez <51986786+Roast-Lord@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:14:24 +0000 (-0300) Subject: Fixed typo on ordered_values example. (#10984) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=009aa8cb63dd082e1ba0c4a96a39980d36e26e71;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fixed typo on ordered_values example. (#10984) --- diff --git a/lib/sqlalchemy/sql/dml.py b/lib/sqlalchemy/sql/dml.py index a0ab097f05..e934028297 100644 --- a/lib/sqlalchemy/sql/dml.py +++ b/lib/sqlalchemy/sql/dml.py @@ -1551,7 +1551,7 @@ class Update(DMLWhereBase, ValuesBase): E.g.:: stmt = table.update().ordered_values( - ("name", "ed"), ("ident": "foo") + ("name", "ed"), ("ident", "foo") ) .. seealso::