8000 fix linting · matplotlib/matplotlib@a9d580e · GitHub
[go: up one dir, main page]

Skip to content

Commit a9d580e

Browse files
committed
fix linting
1 parent a664c8a commit a9d580e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

examples/subplots_axes_and_figures/subplot.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import numpy as np
99
import matplotlib.pyplot as plt
1010

11+
###############################################################################
1112

1213
x1 = np.linspace(0.0, 5.0)
1314
x2 = np.linspace(0.0, 2.0)
@@ -36,9 +37,6 @@
3637
# Subplots can also be generated using `subplot()` as in the following example:
3738
#
3839

39-
import numpy as np
40-
import matplotlib.pyplot as plt
41-
4240

4341
x1 = np.linspace(0.0, 5.0)
4442
x2 = np.linspace(0.0, 2.0)
@@ -56,4 +54,4 @@
5654
plt.xlabel('time (s)')
5755
plt.ylabel('Undamped')
5856

59-
plt.show()
57+
plt.show()

0 commit comments

Comments
 (0)
0