Skip to content

Commit cc12221

Browse files
committed
Fixed for new ArcListGraph
1 parent 54f6ef8 commit cc12221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/from/arcs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ pub fn from_csv(global_args: GlobalArgs, args: CliArgs, file: impl BufRead) -> R
189189
}
190190

191191
// convert the iter to a graph
192-
let g = Left(ArcListGraph::new(
192+
let g = ArcListGraph::new(
193193
num_nodes,
194194
group_by
195195
.iter()
196196
.unwrap()
197197
.map(|(src, dst, _)| (src, dst))
198198
.dedup(),
199-
));
199+
);
200200

201201
create_parent_dir(&args.dst)?;
202202

0 commit comments

Comments
 (0)