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

Skip to content

Commit 6ac62c8

Browse files
committed
remove trailing whitespace
1 parent 0ca30c2 commit 6ac62c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

galleries/examples/statistics/histogram_bihistogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Plot the first histogram
3333
ax.hist(dataset1, bins=n_bins, label="Dataset 1")
3434

35-
# Plot the second histogram
35+
# Plot the second histogram
3636
# (notice the negative weights, which flip the histogram upside down)
3737
ax.hist(dataset2, weights=-np.ones_like(dataset2), bins=n_bins, label="Dataset 2")
3838
ax.axhline(0, color="k")

0 commit comments

Comments
 (0)