Skip to content

Commit 8190b12

Browse files
authored
linting fix
1 parent 91dafcd commit 8190b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ def test_subfigure_pdf():
12521252
fig = plt.figure(layout='constrained')
12531253
sub_fig = fig.subfigures()
12541254
ax = sub_fig.add_subplot(111)
1255-
b = ax.bar(1,1)
1255+
b = ax.bar(1, 1)
12561256
ax.bar_label(b)
12571257
buffer = io.BytesIO()
12581258
fig.savefig(buffer, format='pdf')

0 commit comments

Comments
 (0)