Skip to content

Commit

Permalink
Format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Nov 18, 2024
1 parent 6a6245c commit 15da2eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/podio-merge-files
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ parser.add_argument(
choices=["none", "all", "first"],
default="first",
help="metadata to include in the output file, default: "
"only the one from the first file, other options: all files, none",
"only the one from the first file, other options: all files, none",
)
parser.add_argument(
"--metadata-category-name",
Expand Down Expand Up @@ -59,7 +59,9 @@ if args.metadata == "none":
sys.exit(0)

if not metadata_available:
print(f"Warning: metadata category '{args.metadata_category_name}' not found in input files, it will be created")
print(
f"Warning: metadata category '{args.metadata_category_name}' not found in input files, it will be created"
)
all_frames = [podio.Frame()]
else:
if args.metadata == "first":
Expand Down

0 comments on commit 15da2eb

Please sign in to comment.