Skip to content

Commit 6e7f6ec

Browse files
Apply ruff/pycodestyle rule W292
W292 No newline at end of file
1 parent 96a8ca8 commit 6e7f6ec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/user/plots/matplotlib1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
a = np.array([2, 1, 5, 7, 4, 6, 8, 14, 10, 9, 18, 20, 22])
55

66
plt.plot(a)
7-
plt.show()
7+
plt.show()

doc/source/user/plots/matplotlib2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
y = np.linspace(0, 10, 20)
66
plt.plot(x, y, 'purple') # line
77
plt.plot(x, y, 'o') # dots
8-
plt.show()
8+
plt.show()

doc/source/user/plots/matplotlib3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111

1212
ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap='viridis')
1313

14-
plt.show()
14+
plt.show()

0 commit comments

Comments
 (0)