From 727146c1dcf6c5c4527b44e887aaf4ac9a6f2ef2 Mon Sep 17 00:00:00 2001 From: Markus Frank Date: Fri, 5 Jul 2024 17:11:28 +0200 Subject: [PATCH] Fix Fluke8 syle error in python --- examples/ClientTests/scripts/BoxOfStraws.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ClientTests/scripts/BoxOfStraws.py b/examples/ClientTests/scripts/BoxOfStraws.py index 55ba94738..f4f5d4a67 100644 --- a/examples/ClientTests/scripts/BoxOfStraws.py +++ b/examples/ClientTests/scripts/BoxOfStraws.py @@ -59,7 +59,7 @@ def run(): kernel.eventAction().adopt(prt) # seq, act = geant4.addDetectorConstruction('Geant4DetectorConstructionResources/ResourcesBeforeConstruction') - act.When = "geometry"; + act.When = "geometry" # # Configure G4 geometry setup seq, act = geant4.addDetectorConstruction('Geant4DetectorGeometryConstruction/ConstructGeo') @@ -76,7 +76,7 @@ def run(): act.Match = ['/world_volume_(.*)/BoxOfStrawsDet_(.*)/layer_(.*)/straw_(.*)/gas_(.*)'] # seq, act = geant4.addDetectorConstruction('Geant4DetectorConstructionResources/ResourcesAfterConstruction') - act.When = "sensitives"; + act.When = "sensitives" # # Configure I/O geant4.setupROOTOutput('RootOutput', 'BoxOfStraws_' + time.strftime('%Y-%m-%d_%H-%M'))