Skip to content

Commit

Permalink
refactor: Factorize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
qrichert committed Sep 11, 2024
1 parent bf0bf50 commit d3e97f2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
//! "very long text".output_paged();
//! ```

use std::env;
use std::fmt;
use std::io::{self, Write};
use std::process::{Command, Stdio};
use std::sync::LazyLock;
use std::{
env, fmt,
io::{self, Write},
process::{Command, Stdio},
sync::LazyLock,
};

/// Pager to use, lazily determined.
///
Expand Down

0 comments on commit d3e97f2

Please sign in to comment.