diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-02-10 03:56:04 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-02-10 03:56:04 +0000 |
| commit | f1da1623b800cd4de3b71fd1b2ad5ccfde286780 (patch) | |
| tree | a3c5437002919b2c42961cc49b9746862098a804 /lib/sqlalchemy/__init__.py | |
| parent | 449389a45f358300ba95f7d03c7b94b64703e31a (diff) | |
| parent | 5a6a475e14f09a36061b7422534b073e1041fe44 (diff) | |
| download | sqlalchemy-f1da1623b800cd4de3b71fd1b2ad5ccfde286780.tar.gz | |
Merge "update zimports" into main
Diffstat (limited to 'lib/sqlalchemy/__init__.py')
| -rw-r--r-- | lib/sqlalchemy/__init__.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 7d402d44e..c8ec1d825 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -55,8 +55,13 @@ from .sql import intersect_all as intersect_all from .sql import join as join from .sql import label as label from .sql import LABEL_STYLE_DEFAULT as LABEL_STYLE_DEFAULT -from .sql import LABEL_STYLE_DISAMBIGUATE_ONLY as LABEL_STYLE_DISAMBIGUATE_ONLY +from .sql import ( + LABEL_STYLE_DISAMBIGUATE_ONLY as LABEL_STYLE_DISAMBIGUATE_ONLY, +) from .sql import LABEL_STYLE_NONE as LABEL_STYLE_NONE +from .sql import ( + LABEL_STYLE_TABLENAME_PLUS_COL as LABEL_STYLE_TABLENAME_PLUS_COL, +) from .sql import lambda_stmt as lambda_stmt from .sql import lateral as lateral from .sql import literal as literal @@ -128,12 +133,6 @@ from .types import UnicodeText as UnicodeText from .types import VARBINARY as VARBINARY from .types import VARCHAR as VARCHAR -if True: - # work around zimports bug - from .sql import ( - LABEL_STYLE_TABLENAME_PLUS_COL as LABEL_STYLE_TABLENAME_PLUS_COL, - ) - __version__ = "2.0.0b1" |
