openpyxl.styles 在 v2.4.0 中不再有 Style 了吗?
Does not openpyxl.styles have a Style anymore in v2.4.0?
我刚刚将 openpyxl
升级到版本 2.4.0
,此代码在以前的版本中运行良好,但不再运行:
style = openpyxl.styles.Style(**style_kwargs)
Openpyxl 说它没有 Style
属性:
AttributeError: 'module' object has no attribute 'Style'
现在效果如何?
Style
class 在几个版本前已被弃用并已被删除。
我刚刚将 openpyxl
升级到版本 2.4.0
,此代码在以前的版本中运行良好,但不再运行:
style = openpyxl.styles.Style(**style_kwargs)
Openpyxl 说它没有 Style
属性:
AttributeError: 'module' object has no attribute 'Style'
现在效果如何?
Style
class 在几个版本前已被弃用并已被删除。