From e02c25f95a12e4a3f071ad93ea769ded8123fc67 Mon Sep 17 00:00:00 2001 From: Alexandre Chabot-Leclerc Date: Sat, 13 Jul 2019 10:21:33 -0500 Subject: [PATCH] FIX: Missing imports of SegmentPlot and TextPlot Adds missing imports of SegmentPlot and TextPlot to api.py. --- chaco/api.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chaco/api.py b/chaco/api.py index e8680c141..e600bdee1 100644 --- a/chaco/api.py +++ b/chaco/api.py @@ -89,6 +89,8 @@ from .scatterplot_1d import ScatterPlot1D from .line_scatterplot_1d import LineScatterPlot1D from .text_plot_1d import TextPlot1D +from .segment_plot import SegmentPlot +from .text_plot import TextPlot # Plot factories from .plot_factory import create_bar_plot, create_line_plot, create_scatter_plot, \