Skip to content

Commit 6dd43fe

Browse files
committed
Black
1 parent 67cc690 commit 6dd43fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/pytables/test_store.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def test_no_track_times(self, setup_path):
307307
def checksum(filename, hash_factory=hashlib.md5, chunk_num_blocks=128):
308308
h = hash_factory()
309309
with open(filename, "rb") as f:
310-
for chunk in iter(lambda: f.read(chunk_num_blocks * h.block_size), b''):
310+
for chunk in iter(lambda: f.read(chunk_num_blocks * h.block_size), b""):
311311
h.update(chunk)
312312
return h.digest()
313313

0 commit comments

Comments
 (0)