Skip to content

Commit e1702c7

Browse files
committed
PEP8 : missing PEP8 from 554e412
1 parent 63ed538 commit e1702c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/api/scatter_piecharts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
s3 = max(max(x), max(y))
3838

3939
fig, ax = plt.subplots()
40-
ax.scatter(np.arange(3), np.arange(3), marker=(xy1,0),
40+
ax.scatter(np.arange(3), np.arange(3), marker=(xy1, 0),
4141
s=[s1*s1*_ for _ in sizes], facecolor='blue')
42-
ax.scatter(np.arange(3), np.arange(3), marker=(xy2,0),
42+
ax.scatter(np.arange(3), np.arange(3), marker=(xy2, 0),
4343
s=[s2*s2*_ for _ in sizes], facecolor='green')
44-
ax.scatter(np.arange(3), np.arange(3), marker=(xy3,0),
44+
ax.scatter(np.arange(3), np.arange(3), marker=(xy3, 0),
4545
s=[s3*s3*_ for _ in sizes], facecolor='red')
4646

4747
plt.show()

0 commit comments

Comments
 (0)