diff options
Diffstat (limited to 'src/cmds/cmd/sheetdump.rs')
| -rw-r--r-- | src/cmds/cmd/sheetdump.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmds/cmd/sheetdump.rs b/src/cmds/cmd/sheetdump.rs index 3b0953a..defb8ff 100644 --- a/src/cmds/cmd/sheetdump.rs +++ b/src/cmds/cmd/sheetdump.rs @@ -1,3 +1,5 @@ +use std::any::TypeId; + use crate::{ cmd_output, cmds::{ @@ -46,7 +48,7 @@ async fn collect(args: &Arg, _ctx: &JVCommandContext) -> Result<Collect, CmdPrep async fn exec( input: In, collect: Collect, -) -> Result<(Box<dyn std::any::Any + Send + 'static>, String), CmdExecuteError> { +) -> Result<(Box<dyn std::any::Any + Send + 'static>, TypeId), CmdExecuteError> { let mappings = collect.sheet.mappings(); let mut mappings_vec = mappings.iter().cloned().collect::<Vec<LocalMapping>>(); if input.sort { |
