Skip to content

Commit 66025ba

Browse files
committed
Add dedicated axes methods
1 parent 5a2221f commit 66025ba

File tree

7 files changed

+1660
-1587
lines changed

7 files changed

+1660
-1587
lines changed

docs/.proplotrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Use SVG because quality of examples is highest priority
22
# Tested SVG vs. PNG and speeds are comparable!
33
inlinefmt: svg
4+
docstring.hardcopy: true

proplot/axes/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
import matplotlib.projections as mproj
66

77
from ..internals import warnings
8-
from . import plot
8+
from . import plot # noqa: F401
99
from .base import Axes # noqa: F401
1010
from .cartesian import CartesianAxes
1111
from .geo import GeoAxes # noqa: F401
1212
from .geo import BasemapAxes, CartopyAxes
13-
from .plot import * # noqa: F401, F403
1413
from .polar import PolarAxes
1514

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

0 commit comments

Comments
 (0)