Use consistent re-export from ruff_source_file (#9320)

Right now, we both re-export (via `pub use`) and mark the modules
themselves a `pub`, so they can be imported through two different paths.
This commit is contained in:
Charlie Marsh 2023-12-30 15:48:45 -04:00 committed by GitHub
parent c01bb0d485
commit eb9a1bc5f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 10 deletions

View file

@ -4,8 +4,9 @@
use std::borrow::Cow;
use std::cmp;
use ruff_source_file::UniversalNewlines;
use crate::PythonWhitespace;
use ruff_source_file::newlines::UniversalNewlines;
/// Indent each line by the given prefix.
///