mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
fix lints
This commit is contained in:
parent
d943a51e3e
commit
814dcfa8d2
2 changed files with 4 additions and 3 deletions
|
@ -54,7 +54,7 @@ impl Client {
|
|||
port_arg: Option<String>,
|
||||
id: usize,
|
||||
) -> Result<(Self, UnboundedReceiver<Payload>)> {
|
||||
if command == "" {
|
||||
if command.is_empty() {
|
||||
return Result::Err(Error::Other(anyhow!("Command not provided")));
|
||||
}
|
||||
if transport == "tcp" && port_arg.is_some() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue