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

Skip to content

Commit ccb53b0

Browse files
committed
Pep8 fixes in axes_grid test
1 parent d1bb217 commit ccb53b0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/mpl_toolkits/tests/test_axes_grid.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import numpy as np
55
import matplotlib.pyplot as plt
66

7+
78
@image_comparison(baseline_images=['imagegrid_cbar_mode'],
89
extensions=['png'],
910
remove_text=True)
@@ -14,11 +15,10 @@ def test_imagegrid_cbar_mode_edge():
1415
fig = plt.figure(figsize=(6, 6))
1516

1617
grid = ImageGrid(fig, 111,
17-
nrows_ncols = (2, 2),
18-
direction='row',
19-
cbar_location='right',
20-
cbar_mode='edge',
21-
)
18+
nrows_ncols=(2, 2),
19+
direction='row',
20+
cbar_location='right',
21+
cbar_mode='edge')
2222
ax1, ax2, ax3, ax4, = grid
2323

2424
im1 = ax1.imshow(arr.real, cmap='spectral')

0 commit comments

Comments
 (0)