Commit 93d9709f by wuddif

更新代码:方法返回类型提示

parent 33fe75e5
......@@ -31,7 +31,7 @@ class ReadExcel:
self.ws = wb[ini.get_table_name("name")]
@log_decorator
def __get_cell_value(self, column: str, row: int) -> Optional[str]:
def __get_cell_value(self, column: str, row: int):
"""获取指定单元格数据"""
cell_value = self.ws[column + str(row)].value
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