Removed unused imports

Removed unused imports

Change-Id: I646d79849731b87ce6c1eeb80f42c77dd789ecff
Signed-off-by: Chuck Short <chuck.short@canonical.com>
This commit is contained in:
Chuck Short 2012-12-28 10:39:33 -06:00
parent a0e06a8e96
commit 5a81be30de
12 changed files with 1 additions and 21 deletions

View File

@ -16,10 +16,6 @@
from __future__ import absolute_import from __future__ import absolute_import
import argparse
import sys
import textwrap
from keystone import config from keystone import config
from keystone.common import openssl from keystone.common import openssl
from keystone.openstack.common import cfg from keystone.openstack.common import cfg

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from keystone.common import wsgi from keystone.common import wsgi
from keystone import config
class Router(wsgi.ComposableRouter): class Router(wsgi.ComposableRouter):

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import migrate
import sqlalchemy as sql import sqlalchemy as sql

View File

@ -15,13 +15,9 @@
# under the License. # under the License.
from migrate import *
from sqlalchemy import * from sqlalchemy import *
from keystone.common import sql
def upgrade(migrate_engine): def upgrade(migrate_engine):
# Upgrade operations go here. Don't create your own engine; bind # Upgrade operations go here. Don't create your own engine; bind

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import migrate
import sqlalchemy as sql import sqlalchemy as sql

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import migrate
import sqlalchemy as sql import sqlalchemy as sql

View File

@ -14,11 +14,8 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import json
import string
from sqlalchemy import Column, MetaData, String, Table, Text, types from sqlalchemy import Column, MetaData, String, Table, Text, types
from sqlalchemy.orm import sessionmaker
#this won't work on sqlite. It doesn't support dropping columns #this won't work on sqlite. It doesn't support dropping columns

View File

@ -15,9 +15,8 @@
# under the License. # under the License.
import json import json
import string
from sqlalchemy import Column, MetaData, String, Table, types from sqlalchemy import MetaData, Table
from sqlalchemy.orm import sessionmaker from sqlalchemy.orm import sessionmaker
disabled_values = ['false', 'disabled', 'no', '0'] disabled_values = ['false', 'disabled', 'no', '0']

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import migrate
import sqlalchemy as sql import sqlalchemy as sql

View File

@ -14,7 +14,6 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import migrate
import sqlalchemy as sql import sqlalchemy as sql

View File

@ -16,7 +16,6 @@
from setuptools import find_packages from setuptools import find_packages
from setuptools import setup from setuptools import setup
import subprocess
from keystone.openstack.common.setup import get_cmdclass from keystone.openstack.common.setup import get_cmdclass
from keystone.openstack.common.setup import parse_requirements from keystone.openstack.common.setup import parse_requirements

View File

@ -21,7 +21,6 @@ from keystone.identity.backends import ldap as identity_ldap
from keystone import test from keystone import test
import default_fixtures import default_fixtures
import test_backend
import test_backend_ldap import test_backend_ldap