Better set errors

This commit is contained in:
Austen Adler 2023-01-24 20:53:01 -05:00
parent 4d2bf938b5
commit 6d38f80e33

View File

@ -382,7 +382,7 @@ fn parse_arguments(args: &[String]) -> Result<(Register, Operation, Register), K
)) ))
} }
_ => Err(KakError::Custom( _ => Err(KakError::Custom(
"Invalid arguments to set command".to_string(), format!("Invalid arguments to set command: {args:?}"),
)), )),
}?; }?;