Skip to content

Commit 2b472fa

Browse files
committed
Fix passing kwargs to Ticks
1 parent bc04c8a commit 2b472fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def __init__(self, patch, ox, oy, props=None, **kwargs):
640640
641641
%(Patch)s
642642
"""
643-
Patch.__init__(self)
643+
Patch.__init__(self, **kwargs)
644644
self.patch = patch
645645
self.props = props
646646
self._ox, self._oy = ox, oy

0 commit comments

Comments
 (0)