summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorBen Trofatter <trofatter@google.com>2013-03-18 12:40:40 -0700
committerBen Trofatter <trofatter@google.com>2013-03-18 12:40:40 -0700
commit5b00c6555f67d0837ae64a33077dd87571fc1e0e (patch)
tree997e411039e59f812edbbbfe0a774e1e38f55e1b /lib/sqlalchemy/dialects/postgresql/base.py
parent33367fd1ee492fecb279e5b7a2219f236f8027ea (diff)
downloadsqlalchemy-5b00c6555f67d0837ae64a33077dd87571fc1e0e.tar.gz
Corrected silly circular import introduced by original "fix".
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 0d40c87f4..c59caff8d 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -195,7 +195,6 @@ from ... import sql, schema, exc, util
from ...engine import default, reflection
from ...sql import compiler, expression, util as sql_util, operators
from ... import types as sqltypes
-from .hstore import HSTORE
try:
from uuid import UUID as _python_UUID
@@ -894,7 +893,6 @@ ischema_names = {
'interval': INTERVAL,
'interval year to month': INTERVAL,
'interval day to second': INTERVAL,
- 'hstore': HSTORE,
}