diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py b/.venv/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py new file mode 100644 index 00000000..dea89caf --- /dev/null +++ b/.venv/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py @@ -0,0 +1,34 @@ +#Autogenerated schema +from openpyxl.descriptors.serialisable import Serialisable +from openpyxl.descriptors import ( + Sequence, + String, +) + +# could be done using a nestedSequence + +class CellWatch(Serialisable): + + tagname = "cellWatch" + + r = String() + + def __init__(self, + r=None, + ): + self.r = r + + +class CellWatches(Serialisable): + + tagname = "cellWatches" + + cellWatch = Sequence(expected_type=CellWatch) + + __elements__ = ('cellWatch',) + + def __init__(self, + cellWatch=(), + ): + self.cellWatch = cellWatch + |