We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e6be3 commit 6cdf5a2Copy full SHA for 6cdf5a2
tests/test_unit_plot.py
@@ -74,15 +74,14 @@ def test_two_connected_clusters(self):
74
height=512,
75
colors=data,
76
output_file='network.html',
77
- notebook=False
78
)
79
80
def test_empty_graph(self):
81
empty_graph = nx.Graph()
82
mapper_plot = MapperPlot(empty_graph, dim=2)
83
mapper_plot.plot_matplotlib(colors=[])
84
mapper_plot.plot_plotly(colors=[])
85
- mapper_plot.plot_pyvis(colors=[], notebook=False, output_file='tmp.html')
+ mapper_plot.plot_pyvis(colors=[], output_file='tmp.html')
86
87
def test_two_connected_clusters_deprecated(self):
88
data = [
0 commit comments