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-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aae34df0b5aa7dfe02bdc19744b1b6bc8533ee91;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing imports to example (#12453) --- diff --git a/lib/sqlalchemy/sql/_selectable_constructors.py b/lib/sqlalchemy/sql/_selectable_constructors.py index f90512b1f7..b97b7b3b19 100644 --- a/lib/sqlalchemy/sql/_selectable_constructors.py +++ b/lib/sqlalchemy/sql/_selectable_constructors.py @@ -701,6 +701,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),