From a67df35e52f9bff3116c12ceff84e1a3308b276c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 7 Aug 2012 11:08:14 -0400 Subject: more import cleanups --- lib/sqlalchemy/dialects/postgresql/pypostgresql.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/sqlalchemy/dialects/postgresql/pypostgresql.py') 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): -- cgit v1.2.1