From 454f560eaa2980313c3adba9dfcf7e2b351848c6 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 5 May 2020 07:50:10 +1200 Subject: [PATCH] Properly deserialize history args (#1710) --- crates/nu-cli/src/commands/history.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-cli/src/commands/history.rs b/crates/nu-cli/src/commands/history.rs index 2c33d670a3..0c11a19527 100644 --- a/crates/nu-cli/src/commands/history.rs +++ b/crates/nu-cli/src/commands/history.rs @@ -9,7 +9,7 @@ use std::io::{BufRead, BufReader}; pub struct History; #[derive(Deserialize)] -pub struct HistoryArgs; +pub struct HistoryArgs {} impl WholeStreamCommand for History { fn name(&self) -> &str {