Use pretty-print for flake8-to-ruff

This commit is contained in:
Charlie Marsh 2022-10-31 17:52:03 -04:00
parent 5de1fcd653
commit 8fd713739b

View file

@ -29,7 +29,7 @@ fn main() -> Result<()> {
// Create the pyproject.toml.
let pyproject = converter::convert(config)?;
println!("{}", toml::to_string(&pyproject)?);
println!("{}", toml::to_string_pretty(&pyproject)?);
Ok(())
}