Skip to content

Implement and document plotting overrides on plotting methods rather than "wrappers" #197

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 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/.proplotrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Use SVG because quality of examples is highest priority
# Tested SVG vs. PNG and speeds are comparable!
inlinefmt: svg
docstring.hardcopy: true
4 changes: 1 addition & 3 deletions proplot/axes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
import matplotlib.projections as mproj

from ..internals import warnings
from . import plot
from . import plot # noqa: F401
from .base import Axes # noqa: F401
from .cartesian import CartesianAxes
from .geo import GeoAxes # noqa: F401
from .geo import BasemapAxes, CartopyAxes
from .plot import * # noqa: F401, F403
from .polar import PolarAxes

XYAxes, ProjAxes = warnings._rename_objs(
Expand All @@ -30,4 +29,3 @@
'GeoAxes', 'CartopyAxes', 'BasemapAxes',
'ProjAxes', 'XYAxes', # deprecated
]
__all__.extend(plot.__all__) # document wrappers as part of proplot/axes submodule
Loading