Skip to content

Commit

Permalink
chore: Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 29, 2023
1 parent f909d55 commit 5403bee
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::Parser;
use crate::cli::Cli;
use clap::Parser;
use home::home_dir;
use pelite::{FileMap, PeFile};
use sakaya::notify;
Expand Down Expand Up @@ -37,7 +37,10 @@ pub fn exec(address: SocketAddrV4, path: &Path, directory: &str) {
};

if wine_prefix == "" {
notify("Exiting since 32/64-bit could not be determined. Please report this issue.", Some(&icon));
notify(
"Exiting since 32/64-bit could not be determined. Please report this issue.",
Some(&icon),
);
return;
}

Expand Down

0 comments on commit 5403bee

Please sign in to comment.