wbarnha / kafka-python-ng

Fork for Python client for Apache Kafka
https://wbarnha.github.io/kafka-python-ng/
Apache License 2.0
67 stars 8 forks source link

Fix base class of DescribeClientQuotasResponse_v0 #144

Closed wbarnha closed 6 months ago

wbarnha commented 6 months ago

Wrong base class causes error when checking code with mypy:

kafka/protocol/admin.py:928: error: Class kafka.protocol.admin.DescribeClientQuotasResponse_v0 has abstract attributes "RESPONSE_TYPE"
kafka/protocol/admin.py:928: note: If it is meant to be abstract, add 'abc.ABCMeta' as an explicit metaclass

This change is Reviewable