use ruff_python_ast::BytesLiteral; use crate::prelude::*; use crate::string::StringNormalizer; #[derive(Default)] pub struct FormatBytesLiteral; impl FormatNodeRule for FormatBytesLiteral { fn fmt_fields(&self, item: &BytesLiteral, f: &mut PyFormatter) -> FormatResult<()> { StringNormalizer::from_context(f.context()) .normalize(item.into()) .fmt(f) } }