From 535f359218b7de975361617d5ec55149b6a3a7fd Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 17 Jan 2024 13:22:18 +0100 Subject: [PATCH] Fix indentation to the very bad value of 2 --- tools/podio-ttree-to-rntuple | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/podio-ttree-to-rntuple b/tools/podio-ttree-to-rntuple index 3928f4498..ace64514d 100755 --- a/tools/podio-ttree-to-rntuple +++ b/tools/podio-ttree-to-rntuple @@ -13,12 +13,12 @@ parser.add_argument('-r', '--reverse', action='store_true', args = parser.parse_args() if not args.reverse: - reader = podio.root_io.Reader(args.input_file) - writer = podio.root_io.RNTupleWriter(args.output_file) + reader = podio.root_io.Reader(args.input_file) + writer = podio.root_io.RNTupleWriter(args.output_file) else: - reader = podio.root_io.RNTupleReader(args.input_file) - writer = podio.root_io.Writer(args.output_file) + reader = podio.root_io.RNTupleReader(args.input_file) + writer = podio.root_io.Writer(args.output_file) for category in reader.categories: - for frame in reader.get(category): - writer.write_frame(frame, category) + for frame in reader.get(category): + writer.write_frame(frame, category)