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 f0a57a6 commit 6e1b69fCopy full SHA for 6e1b69f
kafka/record/_crc32c.py
@@ -139,7 +139,5 @@ def crc(data):
139
140
if __name__ == "__main__":
141
import sys
142
- # 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
+ data = sys.stdin.read()
145
print(hex(crc(data)))
requirements-dev.txt
@@ -5,7 +5,7 @@ flake8==3.8.3
5
lz4==3.1.0
6
mock==4.0.2
7
py==1.9.0
8
-pylint==2.6.0
+pylint==2.9.6
9
pytest==6.0.2
10
pytest-cov==2.10.1
11
pytest-mock==3.3.1
0 commit comments