diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-02-06 12:59:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-06 11:59:01 +0000 |
| commit | 3abc96fafe052f3c68ac7d1ae18e4fafee8e1f34 (patch) | |
| tree | fbcc50070db039bf681e6147617d457f2f34d86d /atuin-client/src/import/fish.rs | |
| parent | Fix CI build badge (#683) (diff) | |
| download | atuin-3abc96fafe052f3c68ac7d1ae18e4fafee8e1f34.zip | |
Try to make clippy happy 🥺 (#686)
* Try to make clippy happy 🥺
* Fmt
* I missed one (can't run clippy locally on airport wifi...)
Diffstat (limited to 'atuin-client/src/import/fish.rs')
| -rw-r--r-- | atuin-client/src/import/fish.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/src/import/fish.rs b/atuin-client/src/import/fish.rs index 84f4a2f1..850814c7 100644 --- a/atuin-client/src/import/fish.rs +++ b/atuin-client/src/import/fish.rs @@ -31,7 +31,7 @@ fn default_histpath() -> Result<PathBuf> { }; let mut histpath = data.join("fish"); - histpath.push(format!("{}_history", session)); + histpath.push(format!("{session}_history")); if histpath.exists() { Ok(histpath) |
