We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cc690 commit 6dd43feCopy full SHA for 6dd43fe
pandas/tests/io/pytables/test_store.py
@@ -307,7 +307,7 @@ def test_no_track_times(self, setup_path):
307
def checksum(filename, hash_factory=hashlib.md5, chunk_num_blocks=128):
308
h = hash_factory()
309
with open(filename, "rb") as f:
310
- for chunk in iter(lambda: f.read(chunk_num_blocks * h.block_size), b''):
+ for chunk in iter(lambda: f.read(chunk_num_blocks * h.block_size), b""):
311
h.update(chunk)
312
return h.digest()
313
0 commit comments