summaryrefslogtreecommitdiff
path: root/kafka/record/_crc32c.py
diff options
context:
space:
mode:
Diffstat (limited to 'kafka/record/_crc32c.py')
-rw-r--r--kafka/record/_crc32c.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/kafka/record/_crc32c.py b/kafka/record/_crc32c.py
index ecff48f..9db2d89 100644
--- a/kafka/record/_crc32c.py
+++ b/kafka/record/_crc32c.py
@@ -139,7 +139,5 @@ def crc(data):
if __name__ == "__main__":
import sys
- # TODO remove the pylint disable once pylint fixes
- # https://github.com/PyCQA/pylint/issues/2571
- data = sys.stdin.read() # pylint: disable=assignment-from-no-return
+ data = sys.stdin.read()
print(hex(crc(data)))