8000 Merge pull request #2701 from jakevdp/fancybbox_typo · matplotlib/matplotlib@93cce5e · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 93cce5e

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)
0