We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34478d3 commit c25353cCopy full SHA for c25353c
parser/src/fstring.rs
@@ -83,7 +83,6 @@ impl<'a> FStringParser<'a> {
83
// format '{' PYTHON_EXPRESSION '=' FORMAT_SPECIFIER? '}'
84
'=' if self.chars.peek() != Some(&'=') => { // check for delims empty?
85
pred_expression_text = expression.to_string(); // safe expression before = to print it
86
- // pred_expression_text contains trailing spaces, which are trimmed somewhere later before printing, this needs to be prevented orovercome here
87
}
88
89
':' if delims.is_empty() => {
0 commit comments