8000 Remove unused imports (#835) · rainingmaster/PyMySQL@6faa8b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6faa8b6

Browse files
vilhelmprytzmethane
authored andcommitted
Remove unused imports (PyMySQL#835)
1 parent 577276a commit 6faa8b6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pymysql/_auth.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
"""
22
Implements auth methods
33
"""
4-
from ._compat import text_type, PY2
5-
from .constants import CLIENT
4+
from ._compat import PY2
65
from .err import OperationalError
76
from .util import byte2int, int2byte
87

pymysql/converters.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
import re
66
import time
77

8-
from .constants import FIELD_TYPE, FLAG
9-
from .charset import charset_by_id
8+
from .constants import FIELD_TYPE
109

1110

1211
def escape_item(val, charset, mapping=None):

0 commit comments

Comments
 (0)
0