We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d18ee commit 3a4cdc0Copy full SHA for 3a4cdc0
src/fosslight_oss_pkg/_parsing_excel.py
@@ -59,7 +59,7 @@ def convert_excel_to_yaml(oss_report_to_read, output_file, sheet_names=""):
59
try:
60
items = read_oss_report(oss_report_to_read, sheet_names)
61
for item in items:
62
- yaml_dict = create_yaml_with_ossitem(item, yaml_dict)
+ create_yaml_with_ossitem(item, yaml_dict)
63
if yaml_dict:
64
output_file = output_file if output_file.endswith(_file_extension) else output_file + _file_extension
65
success = write_yaml_file(output_file, yaml_dict)
0 commit comments