We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce4dba1 commit 27aac41Copy full SHA for 27aac41
pandas/tests/io/pytables/test_store.py
@@ -309,9 +309,9 @@ class Table3(tables.IsDescription):
309
with ensure_clean_path(setup_path) as path:
310
with tables.open_file(path, mode="w") as h5file:
311
group = h5file.create_group("/", "group")
312
- table1 = h5file.create_table(group, "table1", Table1, "Table 1")
313
- table2 = h5file.create_table(group, "table2", Table2, "Table 2")
314
- table3 = h5file.create_table(group, "table3", Table3, "Table 3")
+ h5file.create_table(group, "table1", Table1, "Table 1")
+ h5file.create_table(group, "table2", Table2, "Table 2")
+ h5file.create_table(group, "table3", Table3, "Table 3")
315
with HDFStore(path) as store:
316
assert len(store.keys(kind="tables")) == 3
317
expected = {"/group/table1", "/group/table2", "/group/table3"}
0 commit comments