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

Skip to content

Commit 93cce5e

Browse files
committed
Merge pull request #2701 from jakevdp/fancybbox_typo
Fix FancyBboxPatch Typo
2 parents 9be5ac4 + 3f78c1d commit 93cce5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/patches.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2237,8 +2237,8 @@ class FancyBboxPatch(Patch):
22372237

22382238
def __str__(self):
22392239
return self.__class__.__name__ \
2240-
+ "FancyBboxPatch(%g,%g;%gx%g)" % (self._x, self._y,
2241-
self._width, self._height)
2240+
+ "(%g,%g;%gx%g)" % (self._x, self._y,
2241+
self._width, self._height)
22422242

22432243
@docstring.dedent_interpd
22442244
def __init__(self, xy, width, height,

0 commit comments

Comments
 (0)