Skip to content

Commit de2c9f3

Browse files
committed
fix namespace collision
1 parent 4d33fd6 commit de2c9f3

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

pypop/notebook_interface/plotting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def _repr_png_(self):
119119
return imgbuffer.getvalue()
120120

121121
def _mpl_fallback_png(self):
122-
from pypop.matplotlib.mplplotbase import MPLPlotBase
122+
from pypop.mplplotting.mplplotbase import MPLPlotBase
123123

124124
if isinstance(self._mpl_fallback, MPLPlotBase):
125125
return self._mpl_fallback._repr_png_()
@@ -159,7 +159,7 @@ def __init__(
159159

160160
# Create matplotlib fallback object. This is lightweight unless used for e.g png
161161
# generation
162-
from pypop.matplotlib import MPLMetricTable
162+
from pypop.mplplotting import MPLMetricTable
163163

164164
self._mpl_fallback = MPLMetricTable(
165165
metrics,
@@ -472,7 +472,7 @@ def __init__(
472472

473473
# Create matplotlib fallback object. This is lightweight unless used for e.g png
474474
# generation
475-
from pypop.matplotlib import MPLScalingPlot
475+
from pypop.mplplotting import MPLScalingPlot
476476

477477
self._mpl_fallback = MPLScalingPlot(
478478
metrics,

0 commit comments

Comments
 (0)