From 3d28612fa84732835719bce1fc005c3a08a53df7 Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 20 Jun 2024 13:50:15 +0200 Subject: [PATCH] pmg-rs: tfa: clippy: unnecessary `pub(self)` Signed-off-by: Lukas Wagner --- pmg-rs/src/tfa.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmg-rs/src/tfa.rs b/pmg-rs/src/tfa.rs index 1924488..0680baa 100644 --- a/pmg-rs/src/tfa.rs +++ b/pmg-rs/src/tfa.rs @@ -17,7 +17,7 @@ use anyhow::{bail, format_err, Error}; use nix::errno::Errno; use nix::sys::stat::Mode; -pub(self) use proxmox_tfa::api::{ +use proxmox_tfa::api::{ RecoveryState, TfaChallenge, TfaConfig, TfaResponse, U2fConfig, UserChallengeAccess, WebauthnConfig, };