Skip to content

Commit 4c632eb

Browse files
committed
Remove dangling references to six compatibility library
1 parent 303a9a5 commit 4c632eb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

draftable/endpoints/comparisons/sides.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from os.path import basename, isfile, join, splitext
22

3-
from six import string_types
4-
53
# urllib3 is a required dependency of requests
64
from urllib3.util import parse_url
75

@@ -67,7 +65,7 @@ def data_from_side(side_name, side):
6765
for a comparison POST request as a dictionary.
6866
"""
6967

70-
if isinstance(side, string_types):
68+
if isinstance(side, str):
7169
# User has provided a file path or URL.
7270
side = make_side(side)
7371

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ dev =
7474
tox >= 3.3.0
7575
twine
7676
types-requests
77-
types-six
7877
wheel
7978

8079
[options.packages.find]

0 commit comments

Comments
 (0)