Commit afe9d2473181288658e33c703142b76c4b456526
1 parent
7f492486
tablestream: slight fix, TableStyleSlim inherits from TableStyle
Showing
1 changed file
with
3 additions
and
2 deletions
oletools/thirdparty/tablestream/tablestream.py
| ... | ... | @@ -55,8 +55,9 @@ from __future__ import print_function |
| 55 | 55 | # 2016-08-28 v0.07 PL: - support for both Python 2.6+ and 3.x |
| 56 | 56 | # - all cells are converted to unicode |
| 57 | 57 | # 2018-09-22 v0.08 PL: - removed mention to oletools' thirdparty folder |
| 58 | +# 2019-03-27 v0.09 PL: - slight fix, TableStyleSlim inherits from TableStyle | |
| 58 | 59 | |
| 59 | -__version__ = '0.08' | |
| 60 | +__version__ = '0.09' | |
| 60 | 61 | |
| 61 | 62 | #------------------------------------------------------------------------------ |
| 62 | 63 | # TODO: |
| ... | ... | @@ -174,7 +175,7 @@ class TableStyle(object): |
| 174 | 175 | bottom_right = u'+' |
| 175 | 176 | |
| 176 | 177 | |
| 177 | -class TableStyleSlim(object): | |
| 178 | +class TableStyleSlim(TableStyle): | |
| 178 | 179 | """ |
| 179 | 180 | Style for a TableStream. |
| 180 | 181 | Example: | ... | ... |