Skip to content

Commit

Permalink
Changes needed for changes to LGDO iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
iguinn committed Nov 1, 2024
1 parent 29e17a6 commit 2db25b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pygama/flow/data_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@ def load_iterator(
)
for file in gb.groups.keys()
]
tb_names += [self.filedb.get_table_name(tier, tb)] * len(gb)
tb_names += [ [self.filedb.get_table_name(tier, tb)] ]* len(gb)
idx_list += [
list(entry_list.loc[i, f"{level}_idx"])
for i in gb.groups.values()
Expand Down Expand Up @@ -1509,7 +1509,7 @@ def browse(
)
for file in gb.groups.keys()
]
tb_names += [self.filedb.get_table_name(tier, tb)] * len(gb)
tb_names += [ [self.filedb.get_table_name(tier, tb)] ]* len(gb)
idx_list += [
list(entry_list.loc[i, f"{parent}_idx"]) for i in gb.groups.values()
]
Expand Down

0 comments on commit 2db25b8

Please sign in to comment.