From: Stefanie Molin <24376333+stefmolin@users.noreply.github.com> Date: Tue, 25 Mar 2025 19:05:44 +0000 (-0400) Subject: Add missing imports to example (#12453) X-Git-Tag: rel_2_0_40~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=00665af1d51603052ab894d1b9c18d49711e8863;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing imports to example (#12453) (cherry picked from commit aae34df0b5aa7dfe02bdc19744b1b6bc8533ee91) --- diff --git a/lib/sqlalchemy/sql/_selectable_constructors.py b/lib/sqlalchemy/sql/_selectable_constructors.py index 69427334a3..ae83efa5d7 100644 --- a/lib/sqlalchemy/sql/_selectable_constructors.py +++ b/lib/sqlalchemy/sql/_selectable_constructors.py @@ -691,6 +691,8 @@ def values( from sqlalchemy import column from sqlalchemy import values + from sqlalchemy import Integer + from sqlalchemy import String value_expr = values( column("id", Integer),