Skip to content

Commit

Permalink
fix is_raw_string for multiple prefixes (#6865)
Browse files Browse the repository at this point in the history
fix `is_raw_string` in the presence of other prefixes (like `rb"foo"`)

fixes #6864
  • Loading branch information
davidszotten committed Aug 25, 2023
1 parent d1f0700 commit 1c66bb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/ruff_python_formatter/src/expression/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl StringPrefix {
}

pub(super) const fn is_raw_string(self) -> bool {
matches!(self, StringPrefix::RAW | StringPrefix::RAW_UPPER)
self.contains(StringPrefix::RAW) || self.contains(StringPrefix::RAW_UPPER)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ result_f = (
(f"{one}" f"{two}")
rf'Not-so-tricky "quote'
rf"Not-so-tricky \"quote"
# Regression test for fstrings dropping comments
result_f = (
Expand Down

0 comments on commit 1c66bb8

Please sign in to comment.