From e7819d258a29eeec0e9255a961fee3b44735afab Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 22 Jul 2025 16:03:20 +0200 Subject: chore: update to rust 1.88 (#2815) * chore: update to rust 1.88 * clippy + fmt * update ci version * update flake --- crates/atuin-client/src/import/bash.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/atuin-client/src/import') diff --git a/crates/atuin-client/src/import/bash.rs b/crates/atuin-client/src/import/bash.rs index 2c4b29b8..99a44a58 100644 --- a/crates/atuin-client/src/import/bash.rs +++ b/crates/atuin-client/src/import/bash.rs @@ -111,11 +111,11 @@ impl<'a> From<&'a [u8]> for LineType<'a> { if line.is_empty() { return LineType::Empty; } - let parsed = match try_parse_line_as_timestamp(line) { + + match try_parse_line_as_timestamp(line) { Some(time) => LineType::Timestamp(time), None => LineType::Command(line), - }; - parsed + } } } -- cgit v1.3.1