MatplotLibAPI 4.0.1__py3-none-any.whl → 4.0.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
MatplotLibAPI/__init__.py CHANGED
@@ -1,7 +1,6 @@
1
1
  """Public API and pandas accessor for MatplotLibAPI."""
2
2
 
3
- from . import accessor as _accessor # noqa: F401
4
- from .base_plot import BasePlot
5
- from .bubble import Bubble
3
+ from .accessor import DataFrameAccessor
4
+ from .types import CorrelationMethod
6
5
 
7
- __all__ = ["BasePlot", "Bubble"]
6
+ __all__ = ["DataFrameAccessor", "CorrelationMethod"]