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

Skip to content

Commit 5b77a39

Browse files
committed
STY: move '+' to previous line
1 parent f8df71b commit 5b77a39

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/matplotlib/image.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,11 @@ def _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification=1.0,
330330
.scale(
331331
in_bbox.width / A.shape[1],
332332
in_bbox.height / A.shape[0])
333-
.translate(in_bbox.x0, in_bbox.y0)
334-
+ self.get_transform())
333+
.translate(in_bbox.x0, in_bbox.y0) +
334+
self.get_transform())
335335

336-
t = (t0
337-
+ Affine2D().translate(
336+
t = (t0 +
337+
Affine2D().translate(
338338
-clipped_bbox.x0,
339339
-clipped_bbox.y0)
340340
.scale(magnification, magnification))

0 commit comments

Comments
 (0)