File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -309,9 +309,9 @@ class Table3(tables.IsDescription):
309309 with ensure_clean_path (setup_path ) as path :
310310 with tables .open_file (path , mode = "w" ) as h5file :
311311 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" )
312+ h5file .create_table (group , "table1" , Table1 , "Table 1" )
313+ h5file .create_table (group , "table2" , Table2 , "Table 2" )
314+ h5file .create_table (group , "table3" , Table3 , "Table 3" )
315315 with HDFStore (path ) as store :
316316 assert len (store .keys (kind = "tables" )) == 3
317317 expected = {"/group/table1" , "/group/table2" , "/group/table3" }
You can’t perform that action at this time.
0 commit comments