We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481f880 commit cd0bd8eCopy full SHA for cd0bd8e
kafka/record/_crc32c.py
@@ -139,5 +139,7 @@ def crc(data):
139
140
if __name__ == "__main__":
141
import sys
142
- data = sys.stdin.read()
+ # TODO remove the pylint disable once pylint fixes
143
+ # https://github.com/PyCQA/pylint/issues/2571
144
+ data = sys.stdin.read() # pylint: disable=assignment-from-no-return
145
print(hex(crc(data)))
0 commit comments