summaryrefslogtreecommitdiff
path: root/taskflow/types/sets.py
diff options
context:
space:
mode:
Diffstat (limited to 'taskflow/types/sets.py')
-rw-r--r--taskflow/types/sets.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/taskflow/types/sets.py b/taskflow/types/sets.py
index 95da1d9..bbd988d 100644
--- a/taskflow/types/sets.py
+++ b/taskflow/types/sets.py
@@ -15,16 +15,8 @@
# under the License.
import collections
-
-# TODO(smcginnis) update this once six has support for collections.abc
-# (https://github.com/benjaminp/six/pull/241) or clean up once we drop py2.7.
-try:
- from collections.abc import Hashable
- from collections.abc import Set
-except ImportError:
- from collections import Hashable
- from collections import Set
-
+from collections.abc import Hashable
+from collections.abc import Set
import itertools
import six