run rustfmt on match plugin

This commit is contained in:
rnxypke 2019-10-02 22:41:52 +02:00
parent be51aad9ad
commit 36f2b09cad

View File

@ -1,6 +1,6 @@
use nu::{ use nu::{
serve_plugin, CallInfo, Plugin, Primitive, ReturnSuccess, ReturnValue, ShellError, serve_plugin, CallInfo, Plugin, Primitive, ReturnSuccess, ReturnValue, ShellError, Signature,
Signature, SyntaxShape, Tagged, Value, SyntaxShape, Tagged, Value,
}; };
use regex::Regex; use regex::Regex;
@ -37,7 +37,9 @@ impl Plugin for Match {
} }
_ => { _ => {
return Err(ShellError::string(format!( return Err(ShellError::string(format!(
"Unrecognized type in params: {:?}", args[0]))); "Unrecognized type in params: {:?}",
args[0]
)));
} }
} }
match &args[1] { match &args[1] {
@ -49,7 +51,9 @@ impl Plugin for Match {
} }
_ => { _ => {
return Err(ShellError::string(format!( return Err(ShellError::string(format!(
"Unrecognized type in params: {:?}", args[0]))); "Unrecognized type in params: {:?}",
args[0]
)));
} }
} }
} }
@ -73,17 +77,20 @@ impl Plugin for Match {
} }
_ => { _ => {
return Err(ShellError::string(format!( return Err(ShellError::string(format!(
"value is not a string! {:?}", &val))); "value is not a string! {:?}",
&val
)));
} }
} }
} else { } else {
return Err(ShellError::string(format!( return Err(ShellError::string(format!(
"column not in row! {:?} {:?}", &self.column, dict))); "column not in row! {:?} {:?}",
&self.column, dict
)));
} }
} }
_ => { _ => {
return Err(ShellError::string(format!( return Err(ShellError::string(format!("Not a row! {:?}", &input)));
"Not a row! {:?}", &input)));
} }
} }
if flag { if flag {