Skip to content

Commit

Permalink
chore: Fix use order with cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Jul 26, 2023
1 parent 7936a42 commit 4024c48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
include!("src/cli.rs");

use clap_mangen::Man;
use clap::CommandFactory;
use clap_complete::generate_to;
use clap_complete::Shell::{Bash, Fish, Zsh};
use clap_mangen::Man;

fn generate_man_pages() {
let man_dir = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("man");
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use hyprland::keyword::*;
use hyprland::shared::Address;
use std::{thread, time};
pub mod cli;
use cli::Cli;
use clap::Parser;
use cli::Cli;

// (1): Keep track of how many threads are running
static mut I: i32 = 0;
Expand Down

0 comments on commit 4024c48

Please sign in to comment.