Skip to content

Commit 6ac6487

Browse files
committed
Formatting
1 parent 21c4a52 commit 6ac6487

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

openmc_plotter/plotgui.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,7 @@ def _export_plot_image(self):
201201
return None
202202

203203
buffer = io.BytesIO()
204-
self.figure.savefig(buffer,
205-
format='png',
206-
transparent=True)
204+
self.figure.savefig(buffer, format='png', transparent=True)
207205
image = QtGui.QImage.fromData(buffer.getvalue(), 'PNG')
208206
if image.isNull():
209207
return None

0 commit comments

Comments
 (0)