Skip to content

Commit

Permalink
event_builder: fixed pep8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
kreczko committed Nov 23, 2021
1 parent 75f139a commit 5794381
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fast_carpenter/event_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ def __call__(self):
rootfile = uproot3.open(self.config.inputPaths[0])
tree = rootfile[self.config.treeName]
except MemoryError:
rootfile = uproot3.open(self.config.inputPaths[0],
localsource=uproot3.FileSource.defaults)
rootfile = uproot3.open(
self.config.inputPaths[0],
localsource=uproot3.FileSource.defaults
)
tree = rootfile[self.config.treeName]

events = BEventsWrapped(tree,
Expand Down

0 comments on commit 5794381

Please sign in to comment.