Skip to content

Commit 691236d

Browse files
committed
make black
1 parent 248e6f1 commit 691236d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_legend_line_scatter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ def plot():
1111
t = np.arange(5)
1212
np.random.seed(123)
1313
x = np.random.rand(5)
14-
plt.plot(t, x, label='line')
15-
plt.scatter(t, x, label='scatter')
14+
plt.plot(t, x, label="line")
15+
plt.scatter(t, x, label="scatter")
1616
plt.legend()
1717
return fig
1818

0 commit comments

Comments
 (0)