Skip to content

Commit ed96227

Browse files
committed
Unify
1 parent 7955bf3 commit ed96227

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/pytables/test_store.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def test_no_track_times(self, setup_path):
306306

307307
def checksum(filename, hash_factory=hashlib.md5, chunk_num_blocks=128):
308308
h = hash_factory()
309-
with open(filename, 'rb') as f:
309+
with open(filename, "rb") as f:
310310
for chunk in iter(lambda: f.read(chunk_num_blocks * h.block_size), b''):
311311
h.update(chunk)
312312
return h.digest()
@@ -319,7 +319,7 @@ def create_h5_and_return_checksum(track_times):
319319
hdf.put(
320320
"table",
321321
df,
322-
format='table',
322+
format="table",
323323
data_columns=True,
324324
index=None,
325325
track_times=track_times,

0 commit comments

Comments
 (0)