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

Skip to content

Commit 3c37cfb

Browse files
committed
Fix PEP8 warnings
1 parent 60e52cf commit 3c37cfb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/mpl_toolkits/tests/test_mplot3d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,8 +597,8 @@ def test_named_colors(self):
597597
voxels = voxels & ~(x * y * z < 1)
598598
colors = np.zeros((10, 10, 10), dtype=np.object_)
599599
colors.fill('C0')
600-
colors[(x<5) & (y < 5)] = '0.25'
601-
colors[(x + z) < 10] = 'cyan'
600+
colors[(x<5) & (y < 5)] = '0.25'
601+
colors[(x + z) < 10] = 'cyan'
602602
ax.voxels(voxels, colors)
603603

604604

0 commit comments

Comments
 (0)