(shape: BaseShape)
| 207 | |
| 208 | |
| 209 | def extract_fill(shape: BaseShape): |
| 210 | if "fill" not in dir(shape): |
| 211 | return None |
| 212 | else: |
| 213 | return shape.fill._xPr.xml |
| 214 | |
| 215 | |
| 216 | def apply_fill(shape: BaseShape, fill_xml: str): |
no outgoing calls
no test coverage detected