Skip to content

Commit 025b2ee

Browse files
committed
avoid line continuation character
1 parent 1363f19 commit 025b2ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/lines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,8 +1432,8 @@ def __init__(self, xy1, xy2, slope, **kwargs):
14321432

14331433
def get_transform(self):
14341434
ax = self.axes
1435-
points_transform = self._transform + ax.transData.inverted()\
1436-
+ ax.transScale
1435+
points_transform = (self._transform + ax.transData.inverted() +
1436+
ax.transScale)
14371437

14381438
if self._xy2 is not None:
14391439
# two points were given

0 commit comments

Comments
 (0)