summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/pypostgresql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-07 11:08:14 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-07 11:08:14 -0400
commita67df35e52f9bff3116c12ceff84e1a3308b276c (patch)
treebc7895fe05e72cabed86514f3173c7e59d965341 /lib/sqlalchemy/dialects/postgresql/pypostgresql.py
parentec7ea3d2646fbf36a1d40edb6215c916d11fd8aa (diff)
downloadsqlalchemy-a67df35e52f9bff3116c12ceff84e1a3308b276c.tar.gz
more import cleanups
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/pypostgresql.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/pypostgresql.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py
index 14ede40a5..a1ba9a3bd 100644
--- a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py
+++ b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py
@@ -13,10 +13,10 @@ URLs are of the form ``postgresql+pypostgresql://user:password@host:port/dbname[
"""
-from sqlalchemy import util
-from sqlalchemy import types as sqltypes
-from sqlalchemy.dialects.postgresql.base import PGDialect, PGExecutionContext
-from sqlalchemy import processors
+from ... import util
+from ... import types as sqltypes
+from .base import PGDialect, PGExecutionContext
+from ... import processors
class PGNumeric(sqltypes.Numeric):
def bind_processor(self, dialect):