8 lines
183 B
Python
8 lines
183 B
Python
|
from mpl_toolkits.axes_grid1.axes_rgb import (
|
||
|
make_rgb_axes, imshow_rgb, RGBAxes as _RGBAxes)
|
||
|
from .axislines import Axes
|
||
|
|
||
|
|
||
|
class RGBAxes(_RGBAxes):
|
||
|
_defaultAxesClass = Axes
|