Skip to content

Commit 22d2429

Browse files
committed
Fixed PEP8 issue with spacing between function arguments.
1 parent 24d74b9 commit 22d2429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _xy_from_xy(self, x, y):
233233
def _makeline(self, x, y, kw, kwargs):
234234
kw = kw.copy() # Don't modify the original kw.
235235
kwargs = kwargs.copy()
236-
if kw.get('color',None) is None and kwargs.get('color',None) is None:
236+
if kw.get('color', None) is None and kwargs.get('color', None) is None:
237237
kwargs['color'] = kw['color'] = six.next(self.color_cycle)
238238
# (can't use setdefault because it always evaluates
239239
# its second argument)

0 commit comments

Comments
 (0)