remove warnings (#3137)

This commit is contained in:
Darren Schroeder
2021-03-06 14:31:22 -06:00
committed by GitHub
parent 06d9d9ed08
commit 15e1e6376b
11 changed files with 13 additions and 12 deletions

View File

@ -109,7 +109,7 @@ impl WholeStreamCommand for PluginFilter {
}
async fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
run_filter(self.path.clone(), (args)).await
run_filter(self.path.clone(), args).await
}
}