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 24bd3e9 commit da7e203Copy full SHA for da7e203
src/fosslight_util/read_excel.py
@@ -12,6 +12,8 @@
12
logger = logging.getLogger(LOGGER_NAME)
13
IDX_CANNOT_FOUND = -1
14
PREFIX_BIN = "bin"
15
+xlrd.xlsx.ensure_elementtree_imported(False, None)
16
+xlrd.xlsx.Element_has_iter = True
17
18
19
def read_oss_report(excel_file, sheet_names=""):
@@ -44,7 +46,6 @@ def read_oss_report(excel_file, sheet_names=""):
44
46
or sheet_to_read_lower == sheet_name_lower:
45
47
sheet = xl_workbook.sheet_by_name(sheet_name)
48
if sheet:
- logger.info(f"Load a matched sheet: {sheet_name}")
49
xl_sheets[sheet_name] = sheet
50
any_sheet_matched = True
51
if not any_sheet_matched:
0 commit comments