summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/mssql/information_schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-07 16:49:02 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-07 16:49:02 -0400
commit18ab1b8c464e6cae96f03b2d6f2680cc8cdb7afe (patch)
tree6db7d93aa3b81e69c3a3cfe756d2cd17433b3737 /lib/sqlalchemy/dialects/mssql/information_schema.py
parent9ade5d2ebff4b7c712191827688066927b3e62b2 (diff)
downloadsqlalchemy-18ab1b8c464e6cae96f03b2d6f2680cc8cdb7afe.tar.gz
- more import cleanup for MSSQL
Diffstat (limited to 'lib/sqlalchemy/dialects/mssql/information_schema.py')
-rw-r--r--lib/sqlalchemy/dialects/mssql/information_schema.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/information_schema.py b/lib/sqlalchemy/dialects/mssql/information_schema.py
index 29a9de344..30849e0ef 100644
--- a/lib/sqlalchemy/dialects/mssql/information_schema.py
+++ b/lib/sqlalchemy/dialects/mssql/information_schema.py
@@ -6,8 +6,8 @@
# TODO: should be using the sys. catalog with SQL Server, not information schema
-from sqlalchemy import Table, MetaData, Column
-from sqlalchemy.types import String, Unicode, Integer, TypeDecorator
+from ... import Table, MetaData, Column
+from ...types import String, Unicode, Integer, TypeDecorator
ischema = MetaData()