Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
togatoga committed Jun 23, 2024
1 parent dba8409 commit d84ee68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kanpyo-dict/src/bin/ipa_dict_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ enum Encoding {
}

fn get_default_output_path() -> String {
let mut path = dirs::config_dir().expect("failed to get config dir").join("kanpyo");
let mut path = dirs::config_dir()
.expect("failed to get config dir")
.join("kanpyo");
path.push("ipa.dict");
path.into_os_string()
.into_string()
Expand Down

0 comments on commit d84ee68

Please sign in to comment.