Skip to content

Commit 3a4cdc0

Browse files
committed
Delete unnecessary returns
1 parent d6d18ee commit 3a4cdc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fosslight_oss_pkg/_parsing_excel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def convert_excel_to_yaml(oss_report_to_read, output_file, sheet_names=""):
5959
try:
6060
items = read_oss_report(oss_report_to_read, sheet_names)
6161
for item in items:
62-
yaml_dict = create_yaml_with_ossitem(item, yaml_dict)
62+
create_yaml_with_ossitem(item, yaml_dict)
6363
if yaml_dict:
6464
output_file = output_file if output_file.endswith(_file_extension) else output_file + _file_extension
6565
success = write_yaml_file(output_file, yaml_dict)

0 commit comments

Comments
 (0)