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

Skip to content

Commit 760812a

Browse files
committed
satiate flake8
1 parent f767a76 commit 760812a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

galleries/examples/statistics/histogram_bihistogram.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
# Use a constant bin width to make the two histograms easier to compare visually
3030
bin_width = 0.25
31-
bins=np.arange(np.min([dataset1, dataset2]), np.max([dataset1, dataset2]) + bin_width, bin_width)
31+
bins = np.arange(np.min([dataset1, dataset2]),
32+
np.max([dataset1, dataset2]) + bin_width, bin_width)
3233

3334
fig, ax = plt.subplots()
3435

0 commit comments

Comments
 (0)