diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2019-08-21 18:47:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 18:47:22 -0700 |
commit | e49caeb3ebdd36eb4d18a517bc402f8e89dfdbee (patch) | |
tree | e29f121c7979c96b9850cd3633d2ecb54d340657 /test/test_assignors.py | |
parent | 5bc25292b8bb5b20ba2fff481fdc77b9909d0831 (diff) | |
download | kafka-python-e49caeb3ebdd36eb4d18a517bc402f8e89dfdbee.tar.gz |
Minor test cleanup (#1885)
Remove unused import, whitespace, etc. No functional changes, just
cleaning it up so the diffs of later changes are cleaner.
Diffstat (limited to 'test/test_assignors.py')
-rw-r--r-- | test/test_assignors.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_assignors.py b/test/test_assignors.py index e2a1d4f..0821caf 100644 --- a/test/test_assignors.py +++ b/test/test_assignors.py @@ -5,8 +5,7 @@ import pytest from kafka.coordinator.assignors.range import RangePartitionAssignor from kafka.coordinator.assignors.roundrobin import RoundRobinPartitionAssignor -from kafka.coordinator.protocol import ( - ConsumerProtocolMemberMetadata, ConsumerProtocolMemberAssignment) +from kafka.coordinator.protocol import ConsumerProtocolMemberAssignment @pytest.fixture |