We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c4a52 commit 6ac6487Copy full SHA for 6ac6487
1 file changed
openmc_plotter/plotgui.py
@@ -201,9 +201,7 @@ def _export_plot_image(self):
201
return None
202
203
buffer = io.BytesIO()
204
- self.figure.savefig(buffer,
205
- format='png',
206
- transparent=True)
+ self.figure.savefig(buffer, format='png', transparent=True)
207
image = QtGui.QImage.fromData(buffer.getvalue(), 'PNG')
208
if image.isNull():
209
0 commit comments