Entry point for any post-unmarshaling processing. May be overridden by subclasses without forwarding call to super.
(self)
| 29 | """ |
| 30 | |
| 31 | def after_unmarshal(self): |
| 32 | """Entry point for any post-unmarshaling processing. |
| 33 | |
| 34 | May be overridden by subclasses without forwarding call to super. |
| 35 | """ |
| 36 | # don't place any code here, just catch call if not overridden by |
| 37 | # subclass |
| 38 | pass |
| 39 | |
| 40 | @property |
| 41 | def core_properties(self) -> CoreProperties: |