Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: remove six dependency (#120)
  • Loading branch information
rafilong committed Jul 21, 2020
1 parent c4c5bfa commit d82687d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/unit/v1/test_async_collection.py
Expand Up @@ -17,7 +17,6 @@
import aiounittest

import mock
import six


class MockAsyncIter:
Expand Down Expand Up @@ -46,7 +45,7 @@ def _get_public_methods(klass):
*(
(
name
for name, value in six.iteritems(class_.__dict__)
for name, value in class_.__dict__.items()
if (
not name.startswith("_")
and isinstance(value, types.FunctionType)
Expand Down

0 comments on commit d82687d

Please sign in to comment.