Skip to content

Commit 07d1d0a

Browse files
committed
STYLE: fix up linting
1 parent dcbf8b5 commit 07d1d0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/plotting/_misc.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,9 @@ def parallel_coordinates(frame, class_column, cols=None, ax=None, color=None,
500500
>>> from matplotlib import pyplot as plt
501501
>>> df = pd.read_csv('https://raw.github.com/pandas-dev/pandas/master'
502502
'/pandas/tests/data/iris.csv')
503-
>>> pd.plotting.parallel_coordinates(df, 'Name',
504-
color=('#556270', '#4ECDC4', '#C7F464'))
503+
>>> pd.plotting.parallel_coordinates(
504+
df, 'Name',
505+
color=('#556270', '#4ECDC4', '#C7F464'))
505506
>>> plt.show()
506507
"""
507508
if axvlines_kwds is None:

0 commit comments

Comments
 (0)