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

Skip to content

Commit 2977068

Browse files
committed
_axes.py pep8 bug 'cause of merging
1 parent 8d77466 commit 2977068

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6442,7 +6442,7 @@ def hist(self, x, bins=None, range=None, density=None, weights=None,
64426442
if normed is not None:
64436443
warnings.warn("The 'normed' kwarg is deprecated, and has been "
64446444
"replaced by the 'density' kwarg.")
6445-
6445+
64466446
# basic input validation
64476447
input_empty = np.size(x) == 0
64486448
# Massage 'x' for processing.

lib/matplotlib/tests/test_category.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ def test_update_plot(self, ax, plotter):
256256
PLOT_BROKEN_LIST = [Axes.scatter,
257257
pytest.param(Axes.plot, marks=pytest.mark.xfail),
258258
pytest.param(Axes.bar, marks=pytest.mark.xfail)]
259+
259260
PLOT_BROKEN_IDS = ["scatter", "plot", "bar"]
260261

261262
@pytest.mark.parametrize("plotter", PLOT_BROKEN_LIST, ids=PLOT_BROKEN_IDS)

0 commit comments

Comments
 (0)