diff --git a/dedoc/readers/docx_reader/data_structures/cell_property.py b/dedoc/readers/docx_reader/data_structures/cell_property.py new file mode 100644 index 00000000..ba4d172e --- /dev/null +++ b/dedoc/readers/docx_reader/data_structures/cell_property.py @@ -0,0 +1,13 @@ + + +class CellProperty: + """ + This class holds information about the table cell. + """ + def __init__(self, colspan: int, rowspan: int, invisible: bool) -> None: + """ + :param cell: class which should contain the following attributes: colspan, rowspan, invisible. + """ + self.colspan = colspan + self.rowspan = rowspan + self.invisible = invisible diff --git a/dedoc/version.py b/dedoc/version.py index 7602829c..e2bd0728 100644 --- a/dedoc/version.py +++ b/dedoc/version.py @@ -1 +1 @@ -__version__ = "" +__version__ = "0.11.2"