Commit 544ac827 by mengxh

Replace read_excel.py

parent 2dd883f3
...@@ -31,7 +31,7 @@ class ReadExcel: ...@@ -31,7 +31,7 @@ class ReadExcel:
self.ws = wb[self.ini.get_table_name(TABLE_NAME_KEY)] self.ws = wb[self.ini.get_table_name(TABLE_NAME_KEY)]
@log_decorator @log_decorator
def __get_cell_value(self, column: str, row: int) -> str|None: def __get_cell_value(self, column, row)
"""根据行或列,获取指定单元格数据""" """根据行或列,获取指定单元格数据"""
cell_value = self.ws[column + str(row)].value cell_value = self.ws[column + str(row)].value
if isinstance(cell_value, str) and len(cell_value.strip()) > 0: if isinstance(cell_value, str) and len(cell_value.strip()) > 0:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment