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 17de520 commit 627a281Copy full SHA for 627a281
lib/matplotlib/tests/test_colorbar.py
@@ -10,7 +10,6 @@
10
from matplotlib.ticker import LogLocator, LogFormatter
11
12
13
-
14
def _get_cmap_norms():
15
"""
16
Define a colormap and appropriate norms for each of the four
@@ -416,11 +415,10 @@ def test_colorbar_log_minortick_labels():
416
415
417
418
def test_colorbar_renorm():
419
- x,y = np.ogrid[-4:4:31j,-4:4:31j]
420
- z = 120000*np.exp(-x**2-y**2)
+ x, y = np.ogrid[-4:4:31j, -4:4:31j]
+ z = 120000*np.exp(-x**2 - y**2)
421
422
fig, ax = plt.subplots()
423
424
im = ax.imshow(z)
425
cbar = fig.colorbar(im)
426
0 commit comments