8000 pyplot updated · matplotlib/matplotlib@9b50e46 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b50e46

Browse files
committed
pyplot updated
1 parent dbe58b2 commit 9b50e46

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3066,7 +3066,7 @@ def phase_spectrum(x, Fs=None, Fc=None, window=None, pad_to=None, sides=None,
30663066
def pie(x, explode=None, labels=None, colors=None, autopct=None,
30673067
pctdistance=0.6, shadow=False, labeldistance=1.1, startangle=None,
30683068
radius=None, counterclock=True, wedgeprops=None, textprops=None,
3069-
hold=None,center=(0,0),frame=False):
3069+
hold=None):
30703070
ax = gca()
30713071
# allow callers to override the hold state by passing hold=True|False
30723072
washold = ax.ishold()
@@ -3078,8 +3078,7 @@ def pie(x, explode=None, labels=None, colors=None, autopct=None,
30783078
autopct=autopct, pctdistance=pctdistance, shadow=shadow,
30793079
labeldistance=labeldistance, startangle=startangle,
30803080
radius=radius, counterclock=counterclock,
3081-
wedgeprops=wedgeprops, textprops=textprops,
3082-
center=center,frame=frame)
3081+
wedgeprops=wedgeprops, textprops=textprops)
30833082
draw_if_interactive()
30843083
finally:
30853084
ax.hold(washold)

0 commit comments

Comments
 (0)
0