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 adb97e8 commit 905a7bbCopy full SHA for 905a7bb
lib/matplotlib/lines.py
@@ -1541,21 +1541,15 @@ def draw(self, renderer):
1541
super().draw(renderer)
1542
1543
def get_xy1(self):
1544
- """
1545
- Return the *xy1* value of the line.
1546
+ """Return the *xy1* value of the line."""
1547
return self._xy1
1548
1549
def get_xy2(self):
1550
1551
- Return the *xy2* value of the line.
1552
+ """Return the *xy2* value of the line."""
1553
return self._xy2
1554
1555
def get_slope(self):
1556
1557
- Return the *slope* value of the line.
1558
+ """Return the *slope* value of the line."""
1559
return self._slope
1560
1561
def set_xy1(self, x, y):
0 commit comments