From 1e278de4cc9a4181e0747640a960e80efcea1ca9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 6 Jan 2019 01:19:47 -0500 Subject: 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 --- test/dialect/mysql/test_query.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) (limited to 'test/dialect/mysql/test_query.py') diff --git a/test/dialect/mysql/test_query.py b/test/dialect/mysql/test_query.py index ecd79257f..e492f1e17 100644 --- a/test/dialect/mysql/test_query.py +++ b/test/dialect/mysql/test_query.py @@ -1,9 +1,24 @@ # coding: utf-8 -from sqlalchemy.testing import eq_, is_ -from sqlalchemy import * -from sqlalchemy.testing import fixtures +from sqlalchemy import all_ +from sqlalchemy import and_ +from sqlalchemy import any_ +from sqlalchemy import Boolean +from sqlalchemy import cast +from sqlalchemy import Column +from sqlalchemy import false +from sqlalchemy import ForeignKey +from sqlalchemy import Integer +from sqlalchemy import MetaData +from sqlalchemy import or_ +from sqlalchemy import select +from sqlalchemy import String +from sqlalchemy import Table from sqlalchemy import testing +from sqlalchemy import true +from sqlalchemy.testing import eq_ +from sqlalchemy.testing import fixtures +from sqlalchemy.testing import is_ class IdiosyncrasyTest(fixtures.TestBase): -- cgit v1.2.1