Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
vbkaisetsu committed Nov 9, 2023
1 parent f01f5e9 commit 3eabb03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion convert_kytea_model/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct Args {
model_out: PathBuf,

/// The number of workers for zstd (0 means multithreaded will be disabled)
#[arg(long, default_value="0")]
#[arg(long, default_value = "0")]
zstd_workers: u32,
}

Expand Down
2 changes: 1 addition & 1 deletion manipulate_model/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct Args {
replace_dict: Option<PathBuf>,

/// The number of workers for zstd (0 means multithreaded will be disabled)
#[arg(long, default_value="0")]
#[arg(long, default_value = "0")]
zstd_workers: u32,
}

Expand Down
2 changes: 1 addition & 1 deletion train/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ struct Args {
no_norm: bool,

/// The number of workers for zstd (0 means multithreaded will be disabled)
#[arg(long, default_value="0")]
#[arg(long, default_value = "0")]
zstd_workers: u32,
}

Expand Down

0 comments on commit 3eabb03

Please sign in to comment.