File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -113,4 +113,4 @@ venv.bak/
113
113
114
114
# JavaScript
115
115
# Ignore node_modules in any directory
116
- ** /node_modules /
116
+ ** /node_modules /
Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ widget
64
64
``` python
65
65
def graph_widget (dot_string : str = " digraph { a -> b; }" ) -> widgets.VBox:
66
66
""" Create an interactive Graphviz widget.
67
-
67
+
68
68
Parameters
69
69
----------
70
70
dot_string
71
71
The DOT string representing the graph
72
-
72
+
73
73
Returns
74
74
-------
75
75
widgets.VBox
Original file line number Diff line number Diff line change 4
4
def test_widget () -> None :
5
5
dot_string = "digraph { a -> b; b -> c; c -> a; }"
6
6
pipe_func_graph_widget = GraphvizWidget (dot_source = dot_string )
7
- assert pipe_func_graph_widget .dot_source == dot_string
7
+ assert pipe_func_graph_widget .dot_source == dot_string
You can’t perform that action at this time.
0 commit comments