Run cargo fmt

This commit is contained in:
Charlie Marsh 2022-11-27 22:58:42 -05:00
parent 6f31b002f8
commit 55619b321a

View file

@ -1324,8 +1324,8 @@ fn missing_args(checker: &mut Checker, definition: &Definition, docstrings_args:
}
}
// Check specifically for `vararg` and `kwarg`, which can be prefixed with a single or
// double star, respectively.
// Check specifically for `vararg` and `kwarg`, which can be prefixed with a
// single or double star, respectively.
if let Some(arg) = &arguments.vararg {
let arg_name = arg.node.arg.as_str();
let starred_arg_name = format!("*{arg_name}");