Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7efaef4

Browse files
committedJan 23, 2025
Fix clean_graph bad unpacking for #56
1 parent 1d63b65 commit 7efaef4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pancat/grapher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def multigraph_viewer(
177177

178178
# Creating pgGraphs object
179179
gfa_graph_A: Graph = clean_graph(
180-
extract_subgraph(
180+
*extract_subgraph(
181181
gfa_path=file_A,
182182
x=start,
183183
y=end,
@@ -187,7 +187,7 @@ def multigraph_viewer(
187187
)
188188
)
189189
gfa_graph_B: Graph = clean_graph(
190-
extract_subgraph(
190+
*extract_subgraph(
191191
gfa_path=file_B,
192192
x=start,
193193
y=end,

0 commit comments

Comments
 (0)
Please sign in to comment.