Skip to content

Commit 026ea6c

Browse files
committed
Fix pre-commit
1 parent 4664c72 commit 026ea6c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

test/k4FWCoreTest/options/ExampleFunctionalProducer.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@
2929
args = parser.parse_known_args()
3030

3131
iosvc = IOSvc("IOSvc")
32-
name = (
33-
"functional_producer.root"
34-
if not args[0].second
35-
else "functional_producer2.root"
36-
)
32+
name = "functional_producer.root" if not args[0].second else "functional_producer2.root"
3733
iosvc.output = name
3834
# Collections can be dropped
3935
# out.outputCommands = ["drop *"]

test/k4FWCoreTest/options/ExampleFunctionalTransformerHist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
FirstParticle=False,
6767
)
6868

69-
hist = RootHistSvc("HistogramPersistencySvc")
69+
hps = RootHistSvc("HistogramPersistencySvc")
7070
root_hist_svc = RootHistoSink("RootHistoSink")
7171
root_hist_svc.FileName = "functional_transformer_hist.root"
7272

0 commit comments

Comments
 (0)