Skip to content

Commit

Permalink
fix dict comprehensions as well
Browse files Browse the repository at this point in the history
  • Loading branch information
rossdylan committed Oct 31, 2024
1 parent 94621b4 commit e1dfb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starlark_syntax/src/syntax/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ impl Display for Expr {
for x in c {
write!(f, "{}", x)?;
}
f.write_str("}}")
f.write_str("}")
}
Expr::Literal(x) => write!(f, "{}", x),
Expr::FString(x) => {
Expand Down

0 comments on commit e1dfb1f

Please sign in to comment.