8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d3f96 commit 225b1bdCopy full SHA for 225b1bd
lib/matplotlib/backends/backend_pdf.py
@@ -1275,10 +1275,10 @@ def _soft_mask_state(self, smask):
1275
def writeExtGSTates(self):
1276
self.writeObject(
1277
self._extGStateObject,
1278
- dict(itertools.chain(
1279
- self.alphaStates.values(),
1280
- self._soft_mask_states.values()
1281
- ))
+ dict([
+ *self.alphaStates.values(),
+ *self._soft_mask_states.values()
+ ])
1282
)
1283
1284
def _write_soft_mask_groups(self):
0 commit comments