Skip to content

Commit d9f1857

Browse files
committed
remove to_string()
1 parent fe8a030 commit d9f1857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/itertools.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ mod decl {
226226
if step.is_one() {
227227
return Ok(format!("count({})", cur));
228228
}
229-
Ok(format!("count({}, {})", cur, step.to_string()))
229+
Ok(format!("count({}, {})", cur, step))
230230
}
231231
}
232232
impl IterNextIterable for PyItertoolsCount {}

0 commit comments

Comments
 (0)