Skip to content

Commit

Permalink
Merge pull request #4393 from moonshoes87/plot-display-issue
Browse files Browse the repository at this point in the history
MNT: Line2D.set_markersize takes any input which can be coerced to float
  • Loading branch information
tacaswell committed May 24, 2015
2 parents c473c1b + e707753 commit 389e697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/lines.py
Expand Up @@ -1061,7 +1061,7 @@ def set_markersize(self, sz):
ACCEPTS: float
"""
self._markersize = sz
self._markersize = float(sz)

def set_xdata(self, x):
"""
Expand Down

0 comments on commit 389e697

Please sign in to comment.