summaryrefslogtreecommitdiff
path: root/taskflow/db/sqlalchemy
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2013-06-25 16:38:30 +1000
committerAngus Salkeld <asalkeld@redhat.com>2013-06-26 11:04:30 +1000
commit6b17ba8ab7a20ff36026dfe90ddc0d9a80f341e0 (patch)
treef027f4f0b5491dfa2a2b7da7a7f41b856c41406c /taskflow/db/sqlalchemy
parent339e43d03b049e5de59addab0e9cbb5f8366af30 (diff)
downloadtaskflow-6b17ba8ab7a20ff36026dfe90ddc0d9a80f341e0.tar.gz
Fix all flake8 E* and F* errors
This was mostly unused modules or local variables. Change-Id: I39f9598ba8b64101a10f80bae448d27272abeddd
Diffstat (limited to 'taskflow/db/sqlalchemy')
-rw-r--r--taskflow/db/sqlalchemy/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/taskflow/db/sqlalchemy/models.py b/taskflow/db/sqlalchemy/models.py
index 9ae6757..6f8a150 100644
--- a/taskflow/db/sqlalchemy/models.py
+++ b/taskflow/db/sqlalchemy/models.py
@@ -22,10 +22,10 @@ SQLAlchemy models for taskflow data.
import json
from oslo.config import cfg
-from sqlalchemy import Column, Integer, String, Table, MetaData
+from sqlalchemy import Column, Integer, String, Table
from sqlalchemy.exc import IntegrityError
from sqlalchemy.ext.declarative import declarative_base
-from sqlalchemy.orm import object_mapper, relationship, backref
+from sqlalchemy.orm import object_mapper, relationship
from sqlalchemy import DateTime, ForeignKey
from sqlalchemy import types as types