clippy lint fix
This commit is contained in:
parent
6e20b9bde4
commit
822b7f3b55
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ impl ScdBackend {
|
|||
return Err(Error::Smartcard(SmartcardError::Error(format!("{e:?}"))));
|
||||
}
|
||||
|
||||
if let Ok(..) = response {
|
||||
if response.is_ok() {
|
||||
// drop remaining lines
|
||||
while let Some(_drop) = rt.block_on(self.agent.next()) {
|
||||
log::trace!(" drop: {:x?}", _drop);
|
||||
|
|
Loading…
Reference in a new issue