Remove Python2 modules.

refs #5443
This commit is contained in:
Khushboo Vashi
2020-05-08 12:28:21 +05:30
committed by Akshay Joshi
parent 057a2b2312
commit d68e6bd892
10 changed files with 16 additions and 51 deletions

View File

@@ -13,13 +13,9 @@ fetching results from it, and also takes care of the duplicate column name in
result.
"""
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
from collections import OrderedDict
import psycopg2
from psycopg2.extensions import cursor as _cursor, encodings
from .encoding import configureDriverEncodings