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

Skip to content

Commit 0b04c7d

Browse files
committed
Make most arguments to Cell keyword only
1 parent be31aa3 commit 0b04c7d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/matplotlib/table.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,12 @@ class Cell(Rectangle):
5151
'vertical': 'RL'
5252
}
5353

54-
@_api.make_keyword_only("3.6", name="edgecolor")
55-
def __init__(self, xy, width, height,
54+
def __init__(self, xy, width, height, *,
5655
edgecolor='k', facecolor='w',
5756
fill=True,
5857
text='',
5958
loc=None,
6059
fontproperties=None,
61-
*,
6260
visible_edges='closed',
6361
):
6462
"""

0 commit comments

Comments
 (0)