Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 2a8b686

Browse files
committed
Code review comments
1 parent f13aefe commit 2a8b686

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

modules/ColumnTypeResolver.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import citext
2-
from sqlalchemy import MetaData, DateTime, Numeric, Integer, BigInteger
2+
from sqlalchemy import DateTime, Numeric, Integer, BigInteger
33
from sqlalchemy.dialects.postgresql import JSONB
44
from sqlalchemy.dialects.postgresql import UUID
55

@@ -18,8 +18,7 @@ class ColumnTypeResolver(object):
1818
'numeric': Numeric,
1919
'guid': UUID,
2020
'int': Integer,
21-
'bigint': BigInteger
22-
}
21+
'bigint': BigInteger}
2322

2423
def resolve_postgres_type(self, column):
2524
return self.POSTGRES_TYPE_MAP[column['type']]

0 commit comments

Comments
 (0)