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

Skip to content

Commit 63d3fb0

Browse files
efiringtacaswell
authored andcommitted
Remove trailing whitespace that the github editor so helpfully added
1 parent 8c3ad29 commit 63d3fb0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/image.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,14 @@ def _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification=1.0,
368368
scaled_dtype = A.dtype
369369
else:
370370
scaled_dtype = np.float32
371-
371+
372372
a_min = A.min()
373373
if a_min is np.ma.masked:
374374
a_min, a_max = 0, 1 # all masked, so values don't matter
375375
else:
376376
a_min = a_min.astype(scaled_dtype)
377377
a_max = A.max().astype(scaled_dtype)
378-
378+
379379
# scale the input data to [.1, .9]. The Agg
380380
# interpolators clip to [0, 1] internally, use a
381381
# smaller input scale to identify which of the

0 commit comments

Comments
 (0)