Skip to content

Commit aa62fc2

Browse files
committed
move imports below title
1 parent e391d69 commit aa62fc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/lines_bars_and_markers/fill_demo.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import numpy as np
2-
import matplotlib.pyplot as plt
3-
41
"""
52
==================
63
A simple Fill plot
74
==================
85
96
This example showcases the most basic fill plot a user can do with matplotlib.
107
"""
8+
import numpy as np
9+
import matplotlib.pyplot as plt
10+
1111
x = np.linspace(0, 1, 500)
1212
y = np.sin(4 * np.pi * x) * np.exp(-5 * x)
1313

0 commit comments

Comments
 (0)