pep8: enable F403 checks

Change-Id: I70da3f953b67022532eec55b228c6e476dcd4972
This commit is contained in:
Julien Danjou 2013-06-19 14:40:17 +02:00
parent 1a4f5fea7d
commit fa53511f86
7 changed files with 34 additions and 7 deletions

View File

@ -14,7 +14,14 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import Column
from sqlalchemy import DateTime
from sqlalchemy import Index
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import String
from sqlalchemy import Table
from sqlalchemy import UniqueConstraint
meta = MetaData()

View File

@ -14,7 +14,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import Column
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import Table
meta = MetaData()

View File

@ -14,7 +14,10 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import Column
from sqlalchemy import MetaData
from sqlalchemy import String
from sqlalchemy import Table
meta = MetaData()

View File

@ -15,7 +15,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import Float
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import Table
meta = MetaData()

View File

@ -12,7 +12,14 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import Column
from sqlalchemy import Float
from sqlalchemy import ForeignKey
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import String
from sqlalchemy import Table
meta = MetaData()

View File

@ -12,7 +12,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from sqlalchemy import *
from sqlalchemy import MetaData
from sqlalchemy import Table
from sqlalchemy import VARCHAR
meta = MetaData()

View File

@ -40,7 +40,7 @@ deps = -r{toxinidir}/requirements.txt
commands = {posargs}
[flake8]
ignore = E125,F403,H301,H306
ignore = E125,H301,H306
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,nova_tests
show-source = True