File tree Expand file tree Collapse file tree 4 files changed +5
-35
lines changed
tests/test_core/test_graph_objs Expand file tree Collapse file tree 4 files changed +5
-35
lines changed Original file line number Diff line number Diff line change 40
40
from collections import OrderedDict
41
41
import json
42
42
43
- __all__ = ["Data" ,
44
- "Annotations" ,
45
- "Area" ,
46
- "Bar" ,
47
- "Box" ,
48
- "Contour" ,
49
- "Heatmap" ,
50
- "Histogram" ,
51
- "Histogram2d" ,
52
- "Histogram2dContour" ,
53
- "Scatter" ,
54
- "Annotation" ,
55
- "AngularAxis" ,
56
- "ColorBar" ,
57
- "Contours" ,
58
- "ErrorX" ,
59
- "ErrorY" ,
60
- "Figure" ,
61
- "Font" ,
62
- "Layout" ,
63
- "Legend" ,
64
- "Line" ,
65
- "Margin" ,
66
- "Marker" ,
67
- "RadialAxis" ,
68
- "Stream" ,
69
- "Trace" ,
70
- "XAxis" ,
71
- "XBins" ,
72
- "YAxis" ,
73
- "YBins" ]
43
+ __all__ = None
74
44
75
45
# TODO: BIG ONE, how should exceptions bubble up in this inheritance scheme?
76
46
# TODO: related, WHAT exceptions should bubble up?
Original file line number Diff line number Diff line change 8
8
from __future__ import absolute_import
9
9
10
10
from nose .tools import raises
11
- from plotly .graph_objs . graph_objs import *
11
+ from plotly .graph_objs import *
12
12
from plotly .exceptions import (PlotlyError ,
13
13
PlotlyDictKeyError ,
14
14
PlotlyDictValueError ,
Original file line number Diff line number Diff line change 8
8
from __future__ import absolute_import
9
9
10
10
from nose .tools import raises
11
- from plotly .graph_objs . graph_objs import *
11
+ from plotly .graph_objs import *
12
12
from plotly .exceptions import (PlotlyError ,
13
13
PlotlyDictKeyError ,
14
14
PlotlyDictValueError ,
Original file line number Diff line number Diff line change 8
8
from __future__ import absolute_import
9
9
10
10
from nose .tools import raises
11
- from plotly .graph_objs . graph_objs import *
11
+ from plotly .graph_objs import *
12
12
from plotly .exceptions import (PlotlyDictKeyError ,
13
13
PlotlyDictValueError ,
14
14
PlotlyDataTypeError ,
@@ -48,4 +48,4 @@ def test_instantiate_error_y():
48
48
49
49
@raises (PlotlyDictKeyError )
50
50
def test_key_error ():
51
- ErrorX (value = 0.1 , typ = 'percent' , color = 'red' )
51
+ ErrorX (value = 0.1 , typ = 'percent' , color = 'red' )
You can’t perform that action at this time.
0 commit comments