diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-06 01:19:47 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-01-06 18:23:11 -0500 |
| commit | 1e278de4cc9a4181e0747640a960e80efcea1ca9 (patch) | |
| tree | 13d0c035807613bfa07e734acad79b9c843cb8b0 /test/sql/test_text.py | |
| parent | 1e1a38e7801f410f244e4bbb44ec795ae152e04e (diff) | |
| download | sqlalchemy-1e278de4cc9a4181e0747640a960e80efcea1ca9.tar.gz | |
Post black reformatting
Applied on top of a pure run of black -l 79 in
I7eda77fed3d8e73df84b3651fd6cfcfe858d4dc9, this set of changes
resolves all remaining flake8 conditions for those codes
we have enabled in setup.cfg.
Included are resolutions for all remaining flake8 issues
including shadowed builtins, long lines, import order, unused
imports, duplicate imports, and docstring issues.
Change-Id: I4f72d3ba1380dd601610ff80b8fb06a2aff8b0fe
Diffstat (limited to 'test/sql/test_text.py')
| -rw-r--r-- | test/sql/test_text.py | 58 |
1 files changed, 28 insertions, 30 deletions
diff --git a/test/sql/test_text.py b/test/sql/test_text.py index 34415600e..6b419f599 100644 --- a/test/sql/test_text.py +++ b/test/sql/test_text.py @@ -1,36 +1,34 @@ """Test the TextClause and related constructs.""" -from sqlalchemy.testing import ( - fixtures, - AssertsCompiledSQL, - eq_, - assert_raises_message, - expect_warnings, - assert_warnings, -) -from sqlalchemy import ( - text, - select, - Integer, - String, - Float, - bindparam, - and_, - func, - literal_column, - exc, - MetaData, - Table, - Column, - asc, - func, - desc, - union, - literal, -) -from sqlalchemy.types import NullType -from sqlalchemy.sql import table, column, util as sql_util +from sqlalchemy import and_ +from sqlalchemy import asc +from sqlalchemy import bindparam +from sqlalchemy import Column +from sqlalchemy import desc +from sqlalchemy import exc +from sqlalchemy import Float +from sqlalchemy import func +from sqlalchemy import Integer +from sqlalchemy import literal +from sqlalchemy import literal_column +from sqlalchemy import MetaData +from sqlalchemy import select +from sqlalchemy import String +from sqlalchemy import Table +from sqlalchemy import text +from sqlalchemy import union from sqlalchemy import util +from sqlalchemy.sql import column +from sqlalchemy.sql import table +from sqlalchemy.sql import util as sql_util +from sqlalchemy.testing import assert_raises_message +from sqlalchemy.testing import assert_warnings +from sqlalchemy.testing import AssertsCompiledSQL +from sqlalchemy.testing import eq_ +from sqlalchemy.testing import expect_warnings +from sqlalchemy.testing import fixtures +from sqlalchemy.types import NullType + table1 = table( "mytable", |
