Skip to content

Commit e065d9a

Browse files
fix: address clippy lints
Signed-off-by: Oskar Manhart <[email protected]>
1 parent 1317838 commit e065d9a

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

winapps/src/backend/container.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
use crate::{
2-
command::{command, Command},
3-
ensure, Backend, Config, Error, Result,
4-
};
1+
use crate::{command::command, ensure, Backend, Config, Error, Result};
52
use std::net::{IpAddr, Ipv4Addr};
63
use tracing::debug;
74

winapps/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::{ensure, Backend, Backends, Config, Error, IntoResult, Result};
1+
use crate::{ensure, Backend, Config, Error, IntoResult, Result};
22
use std::{
33
fmt::{Display, Formatter},
44
process::{Child, Command as StdCommand, Stdio},

winapps/src/remote_client/freerdp.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use crate::{bail, command::Command, Config, Error, RemoteClient, Result};
22
use regex::Regex;
33
use std::{
44
net::{SocketAddr, TcpStream},
5-
path::{Path, PathBuf},
65
time::Duration,
76
};
87
use tracing::info;

0 commit comments

Comments
 (0)