Skip to content

Commit 72a8759

Browse files
committed
Fix scope and content by removing extra format arg
1 parent a16e196 commit 72a8759

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

main.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,7 @@ def write_csv_row(writer, sip_path, bag_files):
262262
file_formats.append(row[0])
263263
file_formats = [format_ or "Unidentified" for format_ in file_formats]
264264
formats_list = ", ".join(file_formats)
265-
scope_content = "Most common file formats: {}".format(
266-
os.path.basename(sip_path), formats_list
267-
)
265+
scope_content = "Most common file formats: {}".format(formats_list)
268266

269267
writer.writerow(
270268
[

0 commit comments

Comments
 (0)