mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-10 20:36:32 +00:00
Reorder imports (#2638)
This commit is contained in:
parent
0355ba571e
commit
67e9ff7cc8
233 changed files with 626 additions and 593 deletions
|
@ -1,10 +1,12 @@
|
|||
//! Generate CLI help.
|
||||
#![allow(clippy::print_stdout, clippy::print_stderr)]
|
||||
|
||||
use crate::utils::replace_readme_section;
|
||||
use anyhow::Result;
|
||||
use std::str;
|
||||
|
||||
use anyhow::Result;
|
||||
|
||||
use crate::utils::replace_readme_section;
|
||||
|
||||
const COMMAND_HELP_BEGIN_PRAGMA: &str = "<!-- Begin auto-generated command help. -->\n";
|
||||
const COMMAND_HELP_END_PRAGMA: &str = "<!-- End auto-generated command help. -->";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue