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 bb3bc9a commit 814c6ddCopy full SHA for 814c6dd
src/fosslight_oss_pkg/_parsing_excel.py
@@ -22,7 +22,7 @@ def get_sheet_name(yaml_file, sheet_list):
22
yaml_file = yaml_file[0:MAX_SHEET_NAME_LEN]
23
24
count = 1
25
- while yaml_file in sheet_list:
+ while yaml_file in sheet_list.keys():
26
end_idx = MAX_SHEET_NAME_LEN - 1 - len(str(count))
27
yaml_file = f"{yaml_file[0:end_idx]}_{count}"
28
count += 1
0 commit comments