Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8ce593a

Browse files
committed
Clear linting errors
1 parent 26d4c99 commit 8ce593a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ per-file-ignores =
6060
galleries/users_explain/artists/transforms_tutorial.py: E402, E501
6161
galleries/users_explain/colors/colormaps.py: E501
6262
galleries/users_explain/colors/colors.py: E402
63+
galleries/users_explain/quick_start.py: E402
6364
galleries/tutorials/artists.py: E402
6465
galleries/users_explain/axes/constrainedlayout_guide.py: E402
6566
galleries/users_explain/axes/legend_guide.py: E402

galleries/users_explain/quick_start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
# Adding a horizontal line for the mean, and a rectangle representing the
139139
# standard deviation of the data
140140
mean_line = Line2D([0, 10], [np.mean(x)]*2, color='red', label='Mean')
141-
std_patch = Rectangle([0, mean-std], 10, 2*std, alpha=0.1, label='$\sigma$')
141+
std_patch = Rectangle([0, mean-std], 10, 2*std, alpha=0.1, label=r'$\sigma$')
142142

143143
# Add Artists to Axes object
144144
ax.add_line(mean_line)

0 commit comments

Comments
 (0)