Fix itertools count repr

This commit is contained in:
oow214
2022-06-30 15:40:12 +09:00
parent c07d8650ec
commit 3f8eb24681

View File

@@ -225,7 +225,7 @@ mod decl {
let step = format!("{}", self.step.clone());
if step != "1" {
cur.push_str(", ");
cur.push_str(&step.to_string());
cur.push_str(&step);
}
Ok(format!("count({})", cur))
}