Skip to content

Commit

Permalink
Run ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 13, 2025
1 parent 2576f71 commit 9ecff5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion test/gaudi_opts/test_global_converter_maps.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@

from k4FWCore.parseArgs import parser

parser.add_argument("--iosvc", action="store_true", default=False, help="Use IOSvc instead of PodioDataSvc")
parser.add_argument(
"--iosvc", action="store_true", default=False, help="Use IOSvc instead of PodioDataSvc"
)

args = parser.parse_known_args()[0]

Expand Down
6 changes: 4 additions & 2 deletions test/gaudi_opts/test_link_conversion_edm4hep.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
from k4FWCore.parseArgs import parser

parser.add_argument("--inputfile", help="Input file")
parser.add_argument("--iosvc", action="store_true", default=False, help="Use IOSvc instead of PodioDataSvc")
parser.add_argument(
"--iosvc", action="store_true", default=False, help="Use IOSvc instead of PodioDataSvc"
)
args = parser.parse_known_args()[0]

if args.iosvc:
Expand Down Expand Up @@ -84,7 +86,7 @@
algList = [PseudoRecoAlg, MCRecoLinker, MarlinMCLinkChecker]

if not args.iosvc:
algList =[podioInput] + algList
algList = [podioInput] + algList

ApplicationMgr(
TopAlg=algList,
Expand Down

0 comments on commit 9ecff5e

Please sign in to comment.