Skip to content

Refactoring the axes module (part II) #2213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
FIX LinesAndSpans should not inherit from _AxesBase
  • Loading branch information
NelleV committed Jul 19, 2013
commit bfcd30a4667d3ed683d072e80f4ff65199cf9133
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ._base import _AxesBase


class LinesAndSpans(_AxesBase):
class LinesAndSpans(object):
def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
"""
Add a horizontal line across the axis.
Expand Down