Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6542ab9 commit a9d9eafCopy full SHA for a9d9eaf
1 file changed
lib/matplotlib/tests/test_axes.py
@@ -1489,7 +1489,7 @@ def test_pcolorargs():
1489
X, Y = np.meshgrid(x, y)
1490
Z = np.sin(2 * np.pi * X) * np.cos(2 * np.pi * Y)
1491
Zmask = np.broadcast_to([True, False]*5, Z.shape)
1492
- masked_Z = np.ma.array(Z, mask = Zmask)
+ masked_Z = np.ma.array(Z, mask=Zmask)
1493
plt.pcolormesh(X, Y, masked_Z)
1494
1495
0 commit comments