Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kondratyevd committed Feb 28, 2024
1 parent d3c5191 commit 615909e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion af_benchmark/processor/uproot_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_column_list(self, file):
if isinstance(columns_to_read, list):
if any(c not in tree.keys() for c in columns_to_read):
raise ValueError(f"Error reading column: {column}")
self.column = columns_to_read
self.columns = columns_to_read
elif isinstance(columns_to_read, int):
self.columns = list(tree.keys())[:columns_to_read]
if len(self.columns)<columns_to_read:
Expand Down

0 comments on commit 615909e

Please sign in to comment.