Skip to content

Commit 56ffbe9

Browse files
committed
Fix trailing whitespace linting issues
1 parent b1d1094 commit 56ffbe9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/tests/test_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6137,12 +6137,12 @@ def test_grid_color_with_alpha():
61376137
"""Test that grid(color=(..., alpha)) respects the alpha value."""
61386138
fig, ax = plt.subplots()
61396139
ax.grid(True, color=(0.5, 0.6, 0.7, 0.3))
6140-
6140+
61416141
# Check that alpha is extracted from color tuple
61426142
for tick in ax.xaxis.get_major_ticks():
61436143
assert tick.gridline.get_alpha() == 0.3, \
61446144
f"Expected alpha=0.3, got {tick.gridline.get_alpha()}"
6145-
6145+
61466146
for tick in ax.yaxis.get_major_ticks():
61476147
assert tick.gridline.get_alpha() == 0.3, \
61486148
f"Expected alpha=0.3, got {tick.gridline.get_alpha()}"

0 commit comments

Comments
 (0)