Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4893444

Browse files
committed
Fixed stuff
1 parent 798c387 commit 4893444

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plotly/tests/test_optional/test_figure_factory.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ def test_scatter_plot_matrix(self):
880880
columns=['Numbers', 'Fruit'])
881881

882882
test_scatter_plot_matrix = tls.FigureFactory.create_scatterplotmatrix(
883-
df, diag='scatter', height=1000, width=1000, size=13,
883+
df=df, diag='scatter', height=1000, width=1000, size=13,
884884
title='Scatterplot Matrix', use_theme=False
885885
)
886886

@@ -1012,4 +1012,3 @@ def test_scatter_plot_matrix_kwargs(self):
10121012

10131013
self.assert_dict_equal(test_scatter_plot_matrix['layout'],
10141014
exp_scatter_plot_matrix['layout'])
1015-

plotly/tools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1875,6 +1875,7 @@ def dist_origin(x, y, z):
18751875
)
18761876
return graph_objs.Figure(data=data1, layout=layout)
18771877

1878+
@staticmethod
18781879
def _scatterplot(dataframe, headers,
18791880
diag, size,
18801881
height, width,

0 commit comments

Comments
 (0)