We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc27bd5 commit 9536e02Copy full SHA for 9536e02
1 file changed
src/expr/conditional_expr.rs
@@ -41,7 +41,6 @@ impl PyCaseBuilder {
41
}
42
43
pub fn when(&self, when: PyExpr, then: PyExpr) -> PyCaseBuilder {
44
- println!("when called {self:?}");
45
let mut case_builder = self.clone();
46
case_builder.when.push(when.into());
47
case_builder.then.push(then.into());
0 commit comments