Skip to content

Commit d82687d

Browse files
authored
fix: remove six dependency (#120)
1 parent c4c5bfa commit d82687d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/unit/v1/test_async_collection.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import aiounittest
1818

1919
import mock
20-
import six
2120

2221

2322
class MockAsyncIter:
@@ -46,7 +45,7 @@ def _get_public_methods(klass):
4645
*(
4746
(
4847
name
49-
for name, value in six.iteritems(class_.__dict__)
48+
for name, value in class_.__dict__.items()
5049
if (
5150
not name.startswith("_")
5251
and isinstance(value, types.FunctionType)

0 commit comments

Comments
 (0)