Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuesch committed Jul 18, 2024
1 parent 3a01556 commit c537b75
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion letmein-systemd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@

//! This crate is an abstraction of the `systemd` interfaces needed by `letmein`.

use anyhow::{self as ah, format_err as err, Context as _};
use anyhow as ah;

#[cfg(feature = "tcp")]
use anyhow::{format_err as err, Context as _};

#[cfg(feature = "tcp")]
use std::{
Expand Down

0 comments on commit c537b75

Please sign in to comment.