Skip to content

Commit

Permalink
Removing last of the double quotes shambles
Browse files Browse the repository at this point in the history
  • Loading branch information
ns-rse committed Nov 17, 2023
1 parent 707f724 commit fff61b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/skan/csr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,9 +1044,9 @@ def _simplify_graph(skel):
return skel.graph, np.arange(skel.graph.shape[0])

summary = summarize(skel)
src = np.asarray(summary["node_id_src"])
dst = np.asarray(summary["node_id_dst"])
distance = np.asarray(summary["branch_distance"])
src = np.asarray(summary['node_id_src'])
dst = np.asarray(summary['node_id_dst'])
distance = np.asarray(summary['branch_distance'])

# to reduce the size of simplified graph
nodes = np.unique(np.append(src, dst))
Expand Down

0 comments on commit fff61b4

Please sign in to comment.