Skip to content

Commit c214aa5

Browse files
pre-commit-ci[bot]lgray
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 42b4813 commit c214aa5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/test_processor.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def postprocess(self, accumulator):
2626
acc = None
2727
super(test, proc).postprocess(acc)
2828

29+
2930
def test_issue1408():
3031

3132
class P(processor.ProcessorABC):
@@ -34,6 +35,13 @@ def process(self, events):
3435

3536
def postprocess(self, accumulator):
3637
pass
38+
3739
fileset = {"dy": {"files": {"tests/samples/nano_dy.root": "Events"}}}
3840
run = processor.Runner(executor=processor.FuturesExecutor())
39-
print(run(fileset=fileset, processor_instance=P(), iteritems_options={"filter_name": lambda name: True}))
41+
print(
42+
run(
43+
fileset=fileset,
44+
processor_instance=P(),
45+
iteritems_options={"filter_name": lambda name: True},
46+
)
47+
)

0 commit comments

Comments
 (0)