Skip to content

Commit 3966a46

Browse files
author
Lukas Maxeiner
committed
used black to change ' to "
1 parent 4c95ceb commit 3966a46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_steps.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ def plot():
1010
y3 = np.array([1, 2, 1, 4, 2])
1111
y4 = np.array([1, 2, 1, 4, 2])
1212

13-
plt.step(x, y1, 'r-')
14-
plt.step(x, y2, 'b--', where='pre')
15-
plt.step(x, y3, 'g-.', where='post')
16-
plt.step(x, y4, 'y:', where='mid')
17-
plt.legend(['default', 'pre', 'post', 'mid'])
13+
plt.step(x, y1, "r-")
14+
plt.step(x, y2, "b--", where="pre")
15+
plt.step(x, y3, "g-.", where="post")
16+
plt.step(x, y4, "y:", where="mid")
17+
plt.legend(["default", "pre", "post", "mid"])
1818

1919
return plt.gcf()
2020

0 commit comments

Comments
 (0)