Skip to content

Commit bdb952e

Browse files
authored
Remove pylint workaround since upstream fixed
Supposedly this is fixed upstream now: pylint-dev/pylint#2571 (comment)
1 parent f0a57a6 commit bdb952e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

kafka/record/_crc32c.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,5 @@ def crc(data):
139139

140140
if __name__ == "__main__":
141141
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
142+
data = sys.stdin.read()
145143
print(hex(crc(data)))

0 commit comments

Comments
 (0)