Skip to content

Commit 5ded607

Browse files
committed
Run pre-commit
1 parent c3a913d commit 5ded607

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ venv.bak/
113113

114114
# JavaScript
115115
# Ignore node_modules in any directory
116-
**/node_modules/
116+
**/node_modules/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ widget
6464
```python
6565
def graph_widget(dot_string: str = "digraph { a -> b; }") -> widgets.VBox:
6666
"""Create an interactive Graphviz widget.
67-
67+
6868
Parameters
6969
----------
7070
dot_string
7171
The DOT string representing the graph
72-
72+
7373
Returns
7474
-------
7575
widgets.VBox

tests/test_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
def test_widget() -> None:
55
dot_string = "digraph { a -> b; b -> c; c -> a; }"
66
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

0 commit comments

Comments
 (0)