Skip to content

Commit

Permalink
Fix signature typo
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsCoding committed Oct 18, 2023
1 parent 40c4156 commit fc4a939
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layout/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ pub fn digraph_random_layout(
#[pyfunction]
#[pyo3(
signature=(graph, first_nodes, horizontal=false, scale=1.0, center=None, aspect_ratio=1.33333333333333),
text_signature = "(graph, first_nodes, /, horitontal=False, scale=1,
text_signature = "(graph, first_nodes, /, horizontal=False, scale=1,
center=None, aspect_ratio=1.33333333333333)")]
pub fn graph_bipartite_layout(
graph: &graph::PyGraph,
Expand Down Expand Up @@ -289,7 +289,7 @@ pub fn graph_bipartite_layout(
#[pyfunction]
#[pyo3(
signature=(graph, first_nodes, horizontal=false, scale=1.0, center=None, aspect_ratio=1.33333333333333),
text_signature = "(graph, first_nodes, /, horitontal=False, scale=1,
text_signature = "(graph, first_nodes, /, horizontal=False, scale=1,
center=None, aspect_ratio=1.33333333333333)")]
pub fn digraph_bipartite_layout(
graph: &digraph::PyDiGraph,
Expand Down

0 comments on commit fc4a939

Please sign in to comment.