]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
docs(types) Fix missing import from sqlalchemy (#7978)
authorkhashashin <khashashin@users.noreply.github.com>
Tue, 3 May 2022 20:00:59 +0000 (22:00 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Tue, 3 May 2022 20:01:58 +0000 (22:01 +0200)
* docs(types) Fix missing import from sqlalchemy

The sample code is missing the import of Enum from sqlalchemy, which might confuse the reader, since we are using another enum type from Python itself here. So it makes sense to clarify that here.

* fix whitespaces

Change-Id: I019bbed8a7278f60e7239160ea4c99ecd2519d3b

Co-authored-by: Federico Caselli <cfederico87@gmail.com>
(cherry picked from commit f89a202d60215b13e3733a3ea950473962b3cf67)

lib/sqlalchemy/sql/sqltypes.py

index 92aaf1c57dc07304f0908a25c2dc21452cf8565e..306ac397df3c148893d90ddcb40fea237b2a50cd 100644 (file)
@@ -1270,6 +1270,8 @@ class Enum(Emulated, String, SchemaType):
     a plain-string enumerated type::
 
         import enum
+        from sqlalchemy import Enum
+
         class MyEnum(enum.Enum):
             one = 1
             two = 2