Skip to content

Commit 8853d53

Browse files
committed
Fixed pep8 conformance
1 parent 7d6ae97 commit 8853d53

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2320,8 +2320,8 @@ def stem(self, *args, **kwargs):
23202320
def pie(self, x, explode=None, labels=None, colors=None,
23212321
autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1,
23222322
startangle=None, radius=None, counterclock=True,
2323-
wedgeprops=None, textprops=None, center = (0, 0),
2324-
frame=False ):
2323+
wedgeprops=None, textprops=None, center=(0, 0),
2324+
frame=False):
23252325
r"""
23262326
Plot a pie chart.
23272327
@@ -2437,7 +2437,6 @@ def pie(self, x, explode=None, labels=None, colors=None,
24372437
if colors is None:
24382438
colors = ('b', 'g', 'r', 'c', 'm', 'y', 'k', 'w')
24392439

2440-
24412440
if radius is None:
24422441
radius = 1
24432442

0 commit comments

Comments
 (0)