Change lambda dummy to NOT_YET_IMPLEMENTED_lambda (#5687)

This only changes the dummy to be easier to identify.
This commit is contained in:
konsti
2023-07-11 15:16:18 +02:00
committed by GitHub
parent df15ad9696
commit 0c8ec80d7b
10 changed files with 56 additions and 51 deletions

View File

@@ -11,7 +11,12 @@ pub struct FormatExprLambda;
impl FormatNodeRule<ExprLambda> for FormatExprLambda {
fn fmt_fields(&self, _item: &ExprLambda, f: &mut PyFormatter) -> FormatResult<()> {
write!(f, [not_yet_implemented_custom_text("lambda x: True")])
write!(
f,
[not_yet_implemented_custom_text(
"lambda NOT_YET_IMPLEMENTED_lambda: True"
)]
)
}
}