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

Skip to content

Commit fe0abf7

Browse files
author
Adrien VINCENT
committed
Fix remaining PEP8 issues
1 parent c426b97 commit fe0abf7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/style_sheets/style_sheets_reference.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ def plot_histograms(ax, prng, nb_samples=10000):
8484
ax.annotate('Annotation', xy=(0.25, 4.25), xycoords='data',
8585
xytext=(0.4, 10), textcoords='data',
8686
bbox=dict(boxstyle="round", alpha=0.2),
87-
arrowprops=dict(arrowstyle="->",
88-
connectionstyle=
89-
"angle,angleA=-95,angleB=35,rad=10"),
87+
arrowprops=dict(
88+
arrowstyle="->",
89+
connectionstyle="angle,angleA=-95,angleB=35,rad=10"),
9090
)
9191
return ax
9292

@@ -99,8 +99,8 @@ def plot_figure(style_label=None):
9999
if style_label is None:
100100
style_label = 'default'
101101

102-
# Use a dedicated RandomState instance to draw the same "random" values across
103-
# the different figures
102+
# Use a dedicated RandomState instance to draw the same "random" values
103+
# across the different figures
104104
prng = np.random.RandomState(145236987)
105105

106106
fig, axes = plt.subplots(ncols=3, nrows=2, num=style_label)

0 commit comments

Comments
 (0)