(self)
| 1442 | return name |
| 1443 | |
| 1444 | def writeExtGSTates(self): |
| 1445 | self.writeObject( |
| 1446 | self._extGStateObject, |
| 1447 | dict([ |
| 1448 | *self.alphaStates.values(), |
| 1449 | *self._soft_mask_states.values() |
| 1450 | ]) |
| 1451 | ) |
| 1452 | |
| 1453 | def _write_soft_mask_groups(self): |
| 1454 | for ob, attributes, content in self._soft_mask_groups: |
no test coverage detected