Skip to content

Commit

Permalink
fix lint in doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
itholic committed Oct 2, 2019
1 parent 0161074 commit eaa981e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks/koalas/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ def line(self, x=None, y=None, **kwargs):
.. plot::
:context: close-figs
>>> s = ks.Series([1 ,3 ,2])
>>> s = ks.Series([1, 3, 2])
>>> ax = s.plot.line()
"""
return self(kind="line", x=x, y=y, **kwargs)
Expand Down

0 comments on commit eaa981e

Please sign in to comment.